buried more whitesapce
[torrus-plus.git] / plugins / overview / templates / tset-list.html
blobd73f6220b36614a4209336c164ed13c8adcdc7b0
1 [% PROCESS 'ov/html-incblocks.txt' %]
2 [% INCLUDE htmlstart
3 title="Non-empty tokensets"
4 contentClass="SingleColumnContent" %]
6 <H1>Non-empty tokensets</H1>
8 [% INCLUDE treename %]
10 <DIV CLASS="Listing">
11 [% counter = 0;
12 evenRow = 0;
14 FOREACH tset = tsetList();
15 sz = tsetMembers(tset).size;
17 IF sz > 0;
19 counter = counter + 1;
21 IF counter % 2 == 0;
22 evenRow = 1;
23 ELSE;
24 evenRow = 0;
25 END;
27 <DIV CLASS="[% evenRow ? 'ListRowEven' : 'ListRow' %]">
28 <SPAN CLASS="TokensetDescr">
29 <A HREF="[%url(tset)%]">[% xmlnorm(param(tset, 'comment')) %]</A>
30 ([% sz %])
31 </SPAN>
32 </DIV>
33 [% END %]
34 [% END %]
35 </DIV>
37 [% INCLUDE tsetbottomline %]
38 [% INCLUDE htmlend %]