]> wagnertech.de Git - mfinanz.git/blob - templates/design40_webpages/employee/_list.html
date error in mapping
[mfinanz.git] / templates / design40_webpages / employee / _list.html
1 [% USE T8 %]
2
3 <div class="wrapper">
4 <table class="tbl-list">
5  <colgroup>
6    <col class="wi-verysmall">
7    <col>
8    <col class="wi-verysmall">
9  </colgroup>
10  <thead>
11  <tr>
12   <th>[% 'Login of User' | $T8 %]</th>
13   <th>[% 'Name' | $T8 %]</th>
14   <th>[% 'Deleted' | $T8 %]</th>
15  </tr>
16  </thead>
17  <tbody>
18 [% FOREACH row IN SELF.employees %]
19  <tr class='listrow[% loop.count % 2 %]'>
20   <td><a href='[% SELF.url_for(action="edit", "employee.id"=row.id) %]'>[% row.login | html %]</a></td>
21   <td>[% row.name | html %]</td>
22   <td>[% row.deleted_as_bool_yn | html %]</td>
23  </tr>
24 [% END %]
25  </tbody>
26 </table>
27 </div><!-- /.wrapper -->