Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / employee / _list.html
1 [%- USE T8 %]
2 <table>
3  <tr class='listheading'>
4   <th>[% 'Login of User' | $T8 %]</th>
5   <th>[% 'Name' | $T8 %]</th>
6   <th>[% 'Deleted' | $T8 %]</th>
7  </tr>
8 [%- FOREACH row IN SELF.employees %]
9  <tr class='listrow[% loop.count % 2 %]'>
10   <td><a href='[% SELF.url_for(action="edit", "employee.id"=row.id) %]'>[% row.login | html %]</a></td>
11   <td>[% row.name | html %]</td>
12   <td>[% row.deleted_as_bool_yn | html %]</td>
13  </tr>
14 [%- END %]
15  </table>