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