Englische Locales auf den neusten Stand bringen.
[kivitendo-erp.git] / templates / webpages / dbupgrade / units_set_default_en.html
1 [% USE HTML %]<div class="listtop">Step 3 of 3: Default units</div>
2
3 <form name="Form" method="post" action="login.pl">
4
5  <input type="hidden" name="unit_type" value="dimension">
6  <input type="hidden" name="action" value="login">
7  <input type="hidden" name="action2" value="">
8
9  <p>
10   There are still entries in the database for which no unit has been assigned.
11   You have to chose a dimension unit and a service unit which will then be assigned to those entries.
12  </p>
13
14  <table>
15   <tr>
16    <td>Dimension unit:</td>
17    <td>
18     <select name="default_dimension_unit">
19      [% FOREACH row = DIMENSION_DDBOX %]<option>[% HTML.escape(row.name) %]</option>[% END %]
20     </select>
21    </td>
22   </tr>
23   <tr>
24
25    <td>Service unit:</td>
26    <td>
27     <select name="default_service_unit">
28      [% FOREACH row = SERVICE_DDBOX %]<option>[% HTML.escape(row.name) %]</option>[% END %]
29     </select>
30    </td>
31   </tr>
32  </table>
33
34  <p><input type="submit" onclick="document.Form.action2.value = 'set_default'; document.Form.submit();" name="dummy" value="Assign units"></p>
35
36 </form>