X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/ce8306e07de8e24ffab52feeeb311468f81e1d70..a3ae31c:/templates/webpages/client_config/_miscellaneous.html
diff --git a/templates/webpages/client_config/_miscellaneous.html b/templates/webpages/client_config/_miscellaneous.html
index 57c62490e..82c8fd4ad 100644
--- a/templates/webpages/client_config/_miscellaneous.html
+++ b/templates/webpages/client_config/_miscellaneous.html
@@ -10,8 +10,8 @@
- | [% LxERP.t8("Address") %] |
- [% L.textarea_tag('defaults.address', SELF.defaults.address, style=style, rows=4) %] |
+ [% LxERP.t8("Address") %] |
+ [% L.textarea_tag('defaults.address', SELF.defaults.address, style=style, rows=4) %] |
@@ -46,6 +46,30 @@
| [% L.select_tag('defaults.language_id', SELF.all_languages, title_key='description', default=SELF.defaults.language_id, with_empty=1, style=style) %] |
+ | [% LxERP.t8("Print templates") %] |
+
+
+ | [% LxERP.t8("Print templates to use") %] |
+
+
+
+ | [% L.radio_button_tag('use_templates', value='existing', id='use_templates_existing', label=LxERP.t8('Use existing templates'), checked=(FORM.use_templates == 'existing')) %] |
+ [% L.select_tag('defaults.templates', SELF.all_templates.print_templates, default=SELF.defaults.templates, value_sub=\make_templates_value, style=style) %] |
+
+
+
+ | [% L.radio_button_tag('use_templates', value='new', id='use_templates_new', label=LxERP.t8('Create new templates from master templates'), checked=(FORM.use_templates == 'new')) %] |
+ [% L.select_tag('new_master_templates', SELF.all_templates.master_templates, default=FORM.new_master_templates, style=style) %] |
+
+
+
+ | [% LxERP.t8("New name") %] |
+ [% L.input_tag('new_templates', FORM.new_templates, style=style) %] |
+
+
+ |
+
+
| [% LxERP.t8("Currencies") %] |
@@ -56,15 +80,11 @@
[% FOREACH currency = SELF.all_currencies %]
+ [% L.hidden_tag("currencies[+].id", currency.id) %]
| [% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %] |
-
- [% L.input_tag("currencies[].name", currency.name, style=style) %]
- |
-
- [% L.hidden_tag("currencies[+].id", currency.id) %]
- [% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %]
- |
+ [% L.input_tag("currencies[].name", currency.name, style=style) %] |
+ [% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %] |
[% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %] |
[% END %]