Revision 697481b1
Von Tamino Steinert vor fast 2 Jahren hinzugefügt
templates/design40_webpages/simple_system_setting/_pricegroup_form.html | ||
---|---|---|
1 |
[%- USE LxERP -%] |
|
2 |
[%- USE L -%] |
|
1 |
[% USE LxERP %] |
|
2 |
[% USE L %] |
|
3 |
[% USE HTML %] |
|
4 |
|
|
3 | 5 |
<div class="wrapper"> |
4 |
<table class="tbl-horizontal"> |
|
5 |
<tbody> |
|
6 |
<tr> |
|
7 |
<th> [% LxERP.t8("Description") %] </th> |
|
8 |
<td> [%- L.input_tag("object.pricegroup", SELF.object.pricegroup, "data-validate"="required", "data-title"=LxERP.t8("Description")) %] </td> |
|
9 |
</tr> |
|
10 |
<tr> |
|
11 |
<th> [% LxERP.t8("Obsolete") %] </th> |
|
12 |
<td> [% L.checkbox_tag("object.obsolete", checked=SELF.object.obsolete, for_submit=1) %] </td> |
|
13 |
</tr> |
|
14 |
</tbody> |
|
15 |
</table> |
|
6 |
<table class="tbl-horizontal"> |
|
7 |
<caption>[% 'Pricegroup' | $T8 %]</caption> |
|
8 |
<colgroup><col class="wi-mediumsmall"><col class="wi-wide"></colgroup> |
|
9 |
<tbody> |
|
10 |
<tr> |
|
11 |
<th> [% LxERP.t8("Description") %] </th> |
|
12 |
<td> [%- L.input_tag("object.pricegroup", SELF.object.pricegroup, "data-validate"="required", "data-title"=LxERP.t8("Description"), class="wi-wider") %] </td> |
|
13 |
</tr> |
|
14 |
<tr> |
|
15 |
<th> [% LxERP.t8("Obsolete") %] </th> |
|
16 |
<td> [% L.checkbox_tag("object.obsolete", checked=SELF.object.obsolete, for_submit=1) %] </td> |
|
17 |
</tr> |
|
18 |
<tr> |
|
19 |
<th>[% LxERP.t8("Delete for Customers") %]</th> |
|
20 |
<td> |
|
21 |
[% L.checkbox_tag("SELF.remove_customer_pricegroup", checked=SELF.remove_customer_pricegroup, for_submit=1) %] |
|
22 |
[% LxERP.t8("This will also remove this pricegroup for all customers.") %] |
|
23 |
</td> |
|
24 |
</tr> |
|
25 |
</tbody> |
|
26 |
</table> |
|
16 | 27 |
</div> |
Auch abrufbar als: Unified diff
Design 4.0: SimpleSystemSetting _pricegroup_form angepasst