The usual changes: forms fixed
[mailer.git] / templates / de / html / admin / admin_add_country.tpl
1 <div align="center">
2 {%form,formMethodPost=modules.php?module=admin&amp;what=list_country%}
3 <table border="0" cellspacing="0" cellpadding="0" class="table dashed" width="430">
4         <tr>
5                 <td class="table_header bottom" colspan="2" align="center">
6                         <strong>{--ADMIN_ADD_COUNTRY_CODE_TITLE--}</strong>
7                 </td>
8         </tr>
9         <tr>
10                 <td align="right" width="300">{--ADMIN_ENTER_COUNTRY_CODE--}:</td>
11                 <td width="100">
12                         <input type="text" class="form_field" name="code" size="2" maxlength="2" />
13                 </td>
14         </tr>
15         <tr>
16                 <td align="right" width="200">{--ADMIN_ENTER_COUNTRY_NAME--}:</td>
17                 <td>
18                         <input type="text" class="form_field" name="descr" size="10" maxlength="255" />
19                 </td>
20         </tr>
21         <tr>
22                 <td class="bottom" align="right" width="200">{--ADMIN_COUNTRY_CODE_ACTIVE--}:</td>
23                 <td class="bottom">
24                         <!-- @TODO Rewrite this selection box to our generic functions //-->
25                         <select name="is_active" size="1" class="form_select">
26                                 <option value="Y">{--YES--}</option>
27                                 <option value="N">{--NO--}</option>
28                         </select>
29                 </td>
30         </tr>
31         <tr>
32                 <td class="table_footer" colspan="2" align="center">
33                         <input type="reset" class="form_reset" value="{--CLEAR_FORM--}" />
34                         <input type="submit" class="form_submit" name="add" value="{--ADMIN_ADD_COUNTRY--}" />
35                 </td>
36         </tr>
37 </table>
38 {%form_close%}
39 </div>