blob: 14d6f60d4fad15e1f2c681e240dee87ac88d0abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
[% INCLUDE 'admin/header.html' title=loc('Extra Fields') -%]
<table>
<thead>
<tr>
<th>[% loc('Name') %]</th>
<th>[% loc('Cobrand') %]</th>
<th>[% loc('Languages') %]</th>
<th>[% loc('Fields') %]</th>
</tr>
</thead>
<tbody>
[% FOR f IN extra_fields %]
<tr>
<td><a href="[% c.uri_for('', f.id) %]">[% f.name | html %]</a></td>
<td>[% f.cobrand | html %]</td>
<td>[% f.language | html %]</td>
<td>[% f.get_extra_fields.size %]</td>
</tr>
[% END %]
</tbody>
</table>
<a href="[% c.uri_for('', 'new') %]" class="btn">[% loc('Add extra fields') %]</a>
[% INCLUDE 'admin/footer.html' %]
|