Neuer Part Controller
[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 </tr>
10 [% FOREACH history = history_entries %]
11 <tr>
12  <td>[% history.itime.to_kivitendo %] [% history.itime.to_kivitendo_time %]</td>
13  <td>[% history.addition | $T8 %]</td>
14  <td>[% HTML.escape(history.employee.name) %]</td>
15 </tr>
16 [% END %]
17 </table>