fix ticketing system error on bootstrap of new install
[freeside.git] / torrus / templates / report-index.html
1 [% PROCESS 'html-incblocks.txt' %]
2 [% INCLUDE htmlstart
3      title="Torrus Reports"
4      contentClass="SingleColumnContent"
5      noTopMenu=1 %]
6
7 <H1>Torrus reports</H1>
8
9 [% INCLUDE treename %]
10
11 <TABLE CLASS="ReportTable">
12 <CAPTION CLASS="ReportTable"></CAPTION>
13 <TR CLASS="ReportHeadrow">
14 <TD CLASS="ReportHeadCell">Year</TD>
15 </TR>
16 [% rowCount = 0;
17    FOREACH yr = data.keys.sort;
18      rowCount = rowCount + 1;
19      IF rowCount % 2  %]
20 <TR CLASS="ReportEvenRow">
21 [%   ELSE %]
22 <TR CLASS="ReportRow">
23 [%   END %]          
24 <TD CLASS="ReportFirstCell"><A HREF="[% yearlyUrl(yr) %]">[% yr %]</A></TD>
25 </TR>
26 [% END %]
27 </TABLE>
28
29 [% INCLUDE htmlend %]