Sprache auf ungültig setzen im Admin-Bereich
[kivitendo-erp.git] / templates / webpages / simple_system_setting / _language_form.html
1 [%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
2 [% SET style="width: 250px" %]
3 <table>
4  <tr>
5   <th align="right">[% LxERP.t8("Language") %]</th>
6   <td>[% L.input_tag("object.description", SELF.object.description, style=style, "data-validate"="required", "data-title"=LxERP.t8("Language")) %]</td>
7  <tr>
8  <tr>
9   <th align="right">[% LxERP.t8("Template Code") %]</th>
10   <td>[% L.input_tag("object.template_code", SELF.object.template_code, style=style) %]</td>
11  </tr>
12  <tr>
13   <th align="right">[% LxERP.t8("Article Code") %]</th>
14   <td>[% L.input_tag("object.article_code", SELF.object.article_code, style=style) %]</td>
15  </tr>
16  <tr>
17   <th align="right">[% LxERP.t8("Number Format") %]</th>
18   <td>[% L.select_tag("object.output_numberformat", SELF.numberformats, default=SELF.object.output_numberformat, with_empty=1, empty_title=LxERP.t8("use program settings"), style=style) %]</td>
19  </tr>
20  <tr>
21   <th align="right">[% LxERP.t8("Date Format") %]</th>
22   <td>[% L.select_tag("object.output_dateformat", SELF.dateformats, default=SELF.object.output_dateformat, with_empty=1, empty_title=LxERP.t8("use program settings"), style=style) %]</td>
23  </tr>
24  <tr>
25   <th align="right">[% LxERP.t8("Long Dates") %]</th>
26   <td>[% L.yes_no_tag("object.output_longdates", SELF.object.output_longdates, style=style) %]</td>
27  </tr>
28  <tr>
29   <th align="right">[% LxERP.t8("Obsolete") %]</th>
30   <td>[% L.yes_no_tag("object.obsolete", SELF.object.obsolete, style=style) %]</td>
31  </tr>
32
33 </table>