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