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