Revision 34e4daa1
Von Bernd Bleßmann vor fast 7 Jahren hinzugefügt
templates/webpages/client_config/_features.html | ||
---|---|---|
157 | 157 |
<td align="right">[% LxERP.t8('Normalize part description and part notes') %]</td> |
158 | 158 |
<td> [% L.yes_no_tag('defaults.normalize_part_descriptions', SELF.defaults.normalize_part_descriptions) %]</td> |
159 | 159 |
<td>[% LxERP.t8('Automatic deletion of leading, trailing and excessive (repetitive) spaces in part description and part notes. Affects the CSV import as well.') %]</td> |
160 |
</tr> |
|
161 |
</tr> |
|
160 |
</tr> |
|
162 | 161 |
|
163 | 162 |
<tr><td class="listheading" colspan="4">[% LxERP.t8("Purchasing & Sales") %]</td></tr> |
164 | 163 |
|
... | ... | |
278 | 277 |
<td align="right">[% LxERP.t8('Project type') %]</td> |
279 | 278 |
<td>[% L.select_tag('defaults.project_type_id', SELF.all_project_types, default=SELF.defaults.project_type_id, title_key='description', with_empty=0, style="width: 200px") %]</td> |
280 | 279 |
</tr> |
280 |
<tr> |
|
281 | 281 |
<td align="right">[% LxERP.t8('Project Status') %]</td> |
282 | 282 |
<td>[% L.select_tag('defaults.project_status_id', SELF.all_project_statuses, default=SELF.defaults.project_status_id, title_key='description', with_empty=0, style="width: 200px") %]</td> |
283 | 283 |
</tr> |
templates/webpages/client_config/_miscellaneous.html | ||
---|---|---|
89 | 89 |
</tr> |
90 | 90 |
|
91 | 91 |
[% FOREACH currency = SELF.all_currencies %] |
92 |
[% L.hidden_tag("currencies[+].id", currency.id) %] |
|
93 | 92 |
<tr> |
94 |
<td align="right">[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %]</td> |
|
93 |
<td align="right"> |
|
94 |
[% L.hidden_tag("currencies[+].id", currency.id) %] |
|
95 |
[% IF loop.count == 1 %][% LxERP.t8("Currencies") %][% END %] |
|
96 |
</td> |
|
95 | 97 |
<td>[% L.input_tag("currencies[].name", currency.name, style=style) %]</td> |
96 | 98 |
<td align="center">[% L.radio_button_tag('defaults.currency_id', value=currency.id, id='defaults.currency_id_' _ currency.id, checked=(SELF.defaults.currency_id == currency.id)) %]</td> |
97 | 99 |
<td>[% IF loop.count == 1 %][% LxERP.t8("Edit the currency names in order to rename them.") %][%- END %]</td> |
Auch abrufbar als: Unified diff
Mandantenkonfig: kleinere HTML-Fehler behoben …
- doppeltes </tr>
- fehlendes <tr>
- input/hidden-tag ausserhalb <td>