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