Revision dccab0e9
Von Cem Aydin vor etwa 1 Jahr hinzugefügt
templates/design40_webpages/fu/add_edit.html | ||
---|---|---|
29 | 29 |
[% END %] |
30 | 30 |
|
31 | 31 |
<div class="wrapper"> |
32 |
<table class="tbl-horizontal">
|
|
32 |
<table class="tbl-list">
|
|
33 | 33 |
<caption>[% 'Follow-Up for user' | $T8 %]</caption> |
34 | 34 |
<thead> |
35 | 35 |
<tr> |
36 |
<th>[% L.checkbox_tag('checkall_checkboxes', label='', id='ckeckall', checkall="[data-checkall=1]") %]</th>
|
|
37 |
<th>[% LxERP.t8('All users') %]</th>
|
|
36 |
<th>[% L.checkbox_tag('checkall_checkboxes', label='', id='checkall', checkall="[data-checkall=1]") %]</th>
|
|
37 |
<th><label for='checkall'>[% LxERP.t8('All users') %]</label></th>
|
|
38 | 38 |
</tr> |
39 | 39 |
</thead> |
40 | 40 |
<tbody> |
... | ... | |
44 | 44 |
[% IF cfe.id == employee.id %][% SET checked = 1 %][% LAST %][% END %] |
45 | 45 |
[% END %] |
46 | 46 |
<tr> |
47 |
<td>[% L.checkbox_tag('created_for_employees[]', value=employee.id, checked=checked, "data-checkall"=1, class="employee_check") %]</td> |
|
48 |
<td><label for='created_for_employees[]'>[% HTML.escape(employee.safe_name) %]</label><td> |
|
47 |
<td>[% L.checkbox_tag('created_for_employees[]', value=employee.id, checked=checked, "data-checkall"=1, class="employee_check", |
|
48 |
id='created_for_employees_' _ employee.id) %]</td> |
|
49 |
<td><label for='[% 'created_for_employees_' _ employee.id %]'>[% HTML.escape(employee.safe_name) %]</label></td> |
|
49 | 50 |
</tr> |
50 |
[% END %]
|
|
51 |
[% END %] |
|
51 | 52 |
</tbody> |
52 | 53 |
</table> |
53 | 54 |
<table class="tbl-list"> |
Auch abrufbar als: Unified diff
Design40: Wiedervorlagen Tabelle korrigiert
- Tabellentyp zu tbl-list geändert
- Labels funktionsfähig gemacht
- Einrückung korrigiert