82124c0bdc9277cc843ffc484582dae1df9bc38b
[kivitendo-erp.git] / templates / webpages / am / language_header.html
1 [%- USE L %]
2 [%- USE HTML %]
3 [%- USE LxERP %]
4 [%- USE T8 %]
5 <h1>[% title | html %]</h1>
6
7 <form method=post action=am.pl>
8
9 <input type=hidden name=id value='[% id %]'>
10 <input type=hidden name=type value=language>
11
12 <table width=100%>
13   <tr>
14     <th align=right>[% 'Language' | $T8 %]</th>
15     <td><input name=description size=30 value="[% description | html %]"></td>
16   <tr>
17   <tr>
18     <th align=right>[% 'Template Code' | $T8 %]</th>
19     <td><input name=template_code size=5 value="[% template_code | html %]"></td>
20   </tr>
21   <tr>
22     <th align=right>[% 'Article Code' | $T8 %]</th>
23     <td><input name=article_code size=10 value="[% article_code | html %]"></td>
24   </tr>
25   <tr>
26     <th align=right>[% 'Number Format' | $T8 %]</th>
27     <td>[% L.select_tag('output_numberformat', numberformats, default = output_numberformat, with_empty = 1, empty_title = LxERP.t8('use program settings')) %]</td>
28   </tr>
29   <tr>
30     <th align=right>[% 'Date Format' | $T8 %]</th>
31     <td>[% L.select_tag('output_dateformat', dateformats, default = output_dateformat, with_empty = 1, empty_title=LxERP.t8('use program settings')) %]</td>
32   </tr>
33   <tr>
34     <th align=right>[% 'Long Dates' | $T8 %]</th>
35     <td>[% L.radio_button_tag('output_longdates', checked=output_longdates, label=LxERP.t8('Yes')) %]
36         [% L.radio_button_tag('output_longdates', checked=!output_longdates, label=LxERP.t8('No')) %]</td>
37   </tr>
38   <td colspan=2><hr size=3 noshade></td>
39   </tr>
40 </table>