5 <h1>[% title | html %]</h1>
 
  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>
 
  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>
 
  33   <td><hr size=3 noshade></td>
 
  38 <form method=post action=am.pl>
 
  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 %]">