Kundenstatistik: Typo im Template
[kivitendo-erp.git] / templates / webpages / customer_vendor_turnover / email_statistic.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE HTML %]
5 [%- USE Dumper %]
6
7 <div id="invoice_statistic">
8   <table width="100%">
9     <tbody>
10       <tr>
11         <td class="listheading">[% 'Sent on' | $T8 %]</td>
12         <td class="listheading">[% 'Subject' | $T8 %]</td>
13         <td class="listheading">[% 'Record Type' | $T8 %]</td>
14         <td class="listheading">[% 'Record number' | $T8 %]</td>
15         <td class="listheading">[% 'From' | $T8 %]</td>
16         <td class="listheading">[% 'To' | $T8 %]</td>
17         <td class="listheading">[% 'Status' | $T8 %]</td>
18       </tr>
19
20       [%- FOREACH row = emails %]
21       <tr class="listrow[% loop.count % 2 %]">
22         <td>[% row.sent_on | html %]</td>
23         <td>
24           <a href="[% SELF.url_for(controller='controller.pl', action => 'EmailJournal/show', id => row.id, back_to => SELF.get_callback) %]">
25            [%- HTML.escape(row.subject) %]
26           </a></td>
27         <td>[% row.type | $T8 %]</td>
28         <td>[% row.recordnumber | html %]</td>
29         <td>[% row.from %]</td>
30         <td>[% row.recipients %]</td>
31         <td>[% row.status %]</td>
32       </tr>
33       [% END %]
34     </tbody>
35   </table>
36
37
38     </tbody>
39   </table>
40 </div>