309f67c265d4865b6c849a53223ef06bbd7b073f
[kivitendo-erp.git] / templates / webpages / simple_system_setting / _part_classification_form.html
1 [%- USE LxERP -%][%- USE L -%]
2 <table>
3  <tr>
4   <th align="right">[% LxERP.t8('Description') %]</th>
5   <td>[% L.input_tag("object.description",  LxERP.t8(SELF.object.description), "data-validate"="required", "data-title"=LxERP.t8("Description")) %]</td>
6  </tr>
7  <tr>
8   <th align="right">[% LxERP.t8('TypeAbbreviation') %]</th>
9   <td>[% L.input_tag("object.abbreviation",  LxERP.t8(SELF.object.abbreviation), size="2", maxlength="2" ) %]</td>
10  </tr>
11  <tr>
12   <th align="right">[% LxERP.t8('Used for Purchase') %]</th>
13   <td>[% L.checkbox_tag("object.used_for_purchase", checked=(SELF.object.used_for_purchase ? 1:''), for_submit=1) %]</td>
14  </tr>
15  <tr>
16   <th align="right">[% LxERP.t8('Used for Sale') %]</th>
17   <td>[% L.checkbox_tag("object.used_for_sale", checked=(SELF.object.used_for_sale ? 1:''), for_submit=1) %]</td>
18  </tr>
19  <tr>
20   <th align="right">[% LxERP.t8('Report separately') %]</th>
21   <td>[% L.checkbox_tag("object.report_separate", checked=(SELF.object.report_separate ? 1:''), for_submit=1) %]</td>
22  </tr>
23 </table>