Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision a867ab3f

Von Hans P. Schlaepfer vor mehr als 4 Jahren hinzugefügt

  • ID a867ab3fb264cd7e1416870ef48150321cb802fb
  • Vorgänger c09f6125
  • Nachfolger 0f3daeab

Neues Design 2019 Standard-Code templates/webpages/part/history.html

Unterschiede anzeigen:

templates/webpages/part/history.html
1 1
[% USE T8 %]
2 2
[% USE HTML %]
3 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 %]
4
<table class="tbl-list">
5
  <thead>
6
    <tr>
7
      <th>[% 'Time' | $T8 %]</th>
8
      <th>[% 'Aktion' | $T8 %]</th>
9
      <th>[% 'Employee' | $T8 %]</th>
10
      <th>[% 'Partnumber' | $T8 %]</th>
11
    </tr>
12
  </thead>
13
  <tbody>
14
    [% FOREACH history = history_entries %]
15
    <tr>
16
      <td>[% history.itime.to_kivitendo %] [% history.itime.to_kivitendo_time %]</td>
17
      <td>[% history.addition | $T8 %]</td>
18
      <td>[% HTML.escape(history.employee.name) %]</td>
19
      <td>[% HTML.escape(history.parsed_snumber) %]</td>
20
    </tr>
21
    [% END %]
22
  </tbody>
19 23
</table>
24

  

Auch abrufbar als: Unified diff