epic-ts
[kivitendo-erp.git] / templates / webpages / am / language_list.html
1 [%- USE HTML %]
2 [%- USE L %]
3 [%- USE LxERP %]
4 [%- USE T8 %]
5 <h1>[% title | html %]</h1>
6
7 <table width=100%>
8   <tr>
9     <td>
10       <table width=100%>
11         <tr class=listheading>
12           <th class=listheading>[% 'Description' | $T8 %]</th>
13           <th class=listheading>[% 'Template Code' | $T8 %]</th>
14           <th class=listheading>[% 'Article Code' | $T8 %]</th>
15           <th class=listheading>[% 'Number Format' | $T8 %]</th>
16           <th class=listheading>[% 'Date Format' | $T8 %]</th>
17           <th class=listheading>[% 'Long Dates' | $T8 %]</th>
18         </tr>
19 [%- FOREACH row = ALL %]
20         <tr valign=top class=listrow[% loop.count % 2 %]>
21          <td><a href="am.pl?action=edit_language&id=[% row.id | html %]&callback=[% callback | html %]">[% row.description %]</a></td>
22          <td align=right>[% row.template_code | html %]</td>
23          <td align=right>[% row.article_code | html %]</td>
24          <td nowrap>[% row.output_numberformat ? row.output_numberformat : LxERP.t8('use program settings') | html %]</td>
25          <td nowrap>[% row.output_dateformat   ? row.output_dateformat   : LxERP.t8('use program settings') | html %]</td>
26          <td nowrap>[% row.output_longdates    ? LxERP.t8('Yes')         : LxERP.t8('No') %]</td>
27 [%- END %]
28        </tr>
29       </table>
30     </td>
31   </tr>
32   <tr>
33   <td><hr size=3 noshade></td>
34   </tr>
35 </table>
36
37 <br>
38 <form method=post action=am.pl>
39
40 <input name=callback type=hidden value="[% callback | html %]">
41 <input type=hidden name=type value=language>
42 <input class=submit type=submit name=action value="[% 'Add' | $T8 %]">
43
44   </form>
45