per-agent configuration of batch processors, #71837
[freeside.git] / torrus / templates / report-yearly.html
1 [% PROCESS 'html-incblocks.txt' %]
2 [% INCLUDE htmlstart
3      title="Torrus Reports: " _ year
4      contentClass="SingleColumnContent"
5      noTopMenu=1 %]
6
7 <H1><A HREF="[% indexUrl() %]">Torrus reports</A>: [% year %]</H1>
8
9 [% INCLUDE treename %]
10
11 <TABLE CLASS="ReportTable">
12 <CAPTION CLASS="ReportTable">Monthly reports</CAPTION>
13 <TR CLASS="ReportHeadRow">
14 <TD CLASS="ReportHeadCell">Month</TD>
15 </TR>
16 [% rowCount = 0;
17    FOREACH mth = data.months;
18      rowCount = rowCount + 1;
19      IF rowCount % 2  %]
20 <TR CLASS="ReportEvenRow">
21 [%   ELSE %]
22 <TR CLASS="ReportRow">
23 [%   END %]       
24 <TD CLASS="ReportFirstCell">
25 <A HREF="[% monthlyUrl(mth) %]">[% monthName(mth) _ ' ' _ year %]</A>
26 </TD>
27 </TR>
28 [% END %]
29 </TABLE>
30
31 [% INCLUDE htmlend %]