Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / customer_vendor_turnover / count_open_items_by_year.html
1 [%- USE T8 %]
2 [%- USE LxERP %]
3 [%- USE L %]
4 [%- USE HTML %]
5 <div id="dun_statistic">
6   <table width="100%">
7     <tbody>
8       <tr>
9         <td class="listheading">[% 'Month/Year' | $T8 %]</td>
10         <td class="listheading">[% 'Dunnings' | $T8 %]</td>
11         <td class="listheading">[% 'Highest Dunninglevel' | $T8 %]</td>
12       </tr>
13
14       [%- FOREACH row = SELF.dun_statistic %]
15       <tr class="listrow[% loop.count % 2 %]">
16         <td>[% row.date_part | html %]</td>
17         <td>[% row.count | html %]</td>
18         <td>[% row.max | html %]</td>
19       </tr>
20       [% END %]
21     </tbody>
22   </table>
23 </div>