Nummernkreise/Standardkonten in Mandantenkonfigurationsdialog verschoben
[kivitendo-erp.git] / templates / webpages / client_config / _miscellaneous.html
1 [%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
2 [% SET style="width: 200px" %]
3 <div id="miscellaneous">
4  <div class="listheading">[% LxERP.t8("Miscellaneous") %]</div>
5
6  <table>
7   <tr>
8    <td align="right">[% LxERP.t8("Business Number") %]</td>
9    <td>[% L.input_tag('defaults.businessnumber', SELF.defaults.businessnumber, style=style) %]</td>
10   </tr>
11
12   <tr>
13    <td align="right">[% LxERP.t8('Default Customer/Vendor Language') %]</td>
14    <td>[% L.select_tag('defaults.language_id', SELF.all_languages, title_key='description', default=SELF.defaults.language_id, with_empty=1, style=style) %]</td>
15   </tr>
16  </table>
17
18  <div class="listheading">[% LxERP.t8("Currencies") %]</div>
19
20  <table>
21   <tr>
22    <th></th>
23    <th>[% LxERP.t8("Default currency") %]</th>
24    <th>[% LxERP.t8("Currency name") %]</th>
25    <th>[% LxERP.t8("Hints") %]</th>
26   </tr>
27
28 [% FOREACH currency = SELF.all_currencies %]
29   <tr>
30    <td align="right">[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %]</td>
31    <td align="center">
32     [% L.hidden_tag("currencies[+].id", currency.id) %]
33     [% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %]
34    </td>
35    <td>
36     [% L.input_tag("currencies[].name", currency.name, style=style) %]
37    </td>
38    <td>[% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %]</td>
39   </tr>
40 [% END %]
41
42   <tr>
43    <td align="right">[% LxERP.t8("Add new currency") %]</td>
44    <td align="center">[% L.radio_button_tag('defaults.currency_id', value=-1, id='defaults.currency_id__1', checked=(SELF.defaults.currency_id == -1)) %]</td>
45    <td>[% L.input_tag("new_currency", FORM.new_currency, style=style) %]</td>
46   </tr>
47  </table>
48
49  <div class="listheading">[% LxERP.t8("Weight") %]</div>
50
51  <table>
52   <tr>
53    <td align="right">[% LxERP.t8("Weight unit") %]</td>
54    <td>[% L.select_tag('defaults.weightunit', SELF.all_weightunits, default=SELF.defaults.weightunit, value_key='name', title_key='name', style=style) %]</td>
55   </tr>
56
57   <tr>
58    <td align="right">[% LxERP.t8('Show weights') %]</td>
59    <td>[% L.yes_no_tag('defaults.show_weight', SELF.defaults.show_weight, style=style) %]</td>
60    <td>[% LxERP.t8('Show the weights of articles and the total weight in orders, invoices and delivery notes?') %]</td>
61   </tr>
62  </table>
63 </div>
64 </div>