epic-s6ts
[kivitendo-erp.git] / templates / webpages / part / history.html
1 [% USE T8 %]
2 [% USE HTML %]
3
4 <table>
5 <tr>
6 <th>[% 'Time'       | $T8 %]</th>
7 <th>[% 'Aktion'     | $T8 %]</th>
8 <th>[% 'Employee'   | $T8 %]</th>
9 <th>[% 'Partnumber' | $T8 %]</th>
10 </tr>
11 [% FOREACH history = history_entries %]
12 <tr>
13  <td>[% history.itime.to_kivitendo %] [% history.itime.to_kivitendo_time %]</td>
14  <td>[% history.addition | $T8 %]</td>
15  <td>[% HTML.escape(history.employee.name) %]</td>
16  <td>[% HTML.escape(history.parsed_snumber) %]</td>
17 </tr>
18 [% END %]
19 </table>