SimpleSystemSetting: Umstellung von »Sprachen«
[kivitendo-erp.git] / templates / webpages / simple_system_setting / _language_form.html
diff --git a/templates/webpages/simple_system_setting/_language_form.html b/templates/webpages/simple_system_setting/_language_form.html
new file mode 100644 (file)
index 0000000..0691f17
--- /dev/null
@@ -0,0 +1,28 @@
+[%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
+[% SET style="width: 250px" %]
+<table>
+ <tr>
+  <th align="right">[% LxERP.t8("Language") %]</th>
+  <td>[% L.input_tag("object.description", SELF.object.description, style=style, "data-validate"="required", "data-title"=LxERP.t8("Language")) %]</td>
+ <tr>
+ <tr>
+  <th align="right">[% LxERP.t8("Template Code") %]</th>
+  <td>[% L.input_tag("object.template_code", SELF.object.template_code, style=style) %]</td>
+ </tr>
+ <tr>
+  <th align="right">[% LxERP.t8("Article Code") %]</th>
+  <td>[% L.input_tag("object.article_code", SELF.object.article_code, style=style) %]</td>
+ </tr>
+ <tr>
+  <th align="right">[% LxERP.t8("Number Format") %]</th>
+  <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>
+ </tr>
+ <tr>
+  <th align="right">[% LxERP.t8("Date Format") %]</th>
+  <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>
+ </tr>
+ <tr>
+  <th align="right">[% LxERP.t8("Long Dates") %]</th>
+  <td>[% L.yes_no_tag("object.output_longdates", SELF.object.output_longdates, style=style) %]</td>
+ </tr>
+</table>