]> wagnertech.de Git - mfinanz.git/blobdiff - templates/webpages/am/language_list.html
am/list_language in template ausgelagert
[mfinanz.git] / templates / webpages / am / language_list.html
diff --git a/templates/webpages/am/language_list.html b/templates/webpages/am/language_list.html
new file mode 100644 (file)
index 0000000..a49d18e
--- /dev/null
@@ -0,0 +1,52 @@
+[%- USE HTML %]
+[%- USE L %]
+[%- USE LxERP %]
+[%- USE T8 %]
+<body>
+
+<h1>[% title | html %]</h1>
+
+<table width=100%>
+  <tr>
+  </tr>
+  <tr height="5"></tr>
+  <tr>
+    <td>
+      <table width=100%>
+        <tr class=listheading>
+          <th class=listheading>[% 'Description' | $T8 %]</th>
+          <th class=listheading>[% 'Template Code' | $T8 %]</th>
+          <th class=listheading>[% 'Article Code' | $T8 %]</th>
+          <th class=listheading>[% 'Number Format' | $T8 %]</th>
+          <th class=listheading>[% 'Date Format' | $T8 %]</th>
+          <th class=listheading>[% 'Long Dates' | $T8 %]</th>
+        </tr>
+[%- FOREACH row = ALL %]
+        <tr valign=top class=listrow[% loop.count % 2 %]>
+         <td><a href="am.pl?action=edit_language&id=[% row.id | html %]&callback=[% callback | html %]">[% row.description %]</a></td>
+         <td align=right>[% row.template_code | html %]</td>
+         <td align=right>[% row.article_code | html %]</td>
+         <td nowrap>[% row.output_numberformat ? row.output_numberformat : LxERP.t8('use program settings') | html %]</td>
+         <td nowrap>[% row.output_dateformat   ? row.output_dateformat   : LxERP.t8('use program settings') | html %]</td>
+         <td nowrap>[% row.output_longdates    ? LxERP.t8('Yes')         : LxERP.t8('No') %]</td>
+[%- END %]
+       </tr>
+      </table>
+    </td>
+  </tr>
+  <tr>
+  <td><hr size=3 noshade></td>
+  </tr>
+</table>
+
+<br>
+<form method=post action=am.pl>
+
+<input name=callback type=hidden value="[% callback | html %]">
+<input type=hidden name=type value=language>
+<input class=submit type=submit name=action value="[% 'Add' | $T8 %]">
+
+  </form>
+
+  </body>
+  </html>