import torrus 1.0.9
[freeside.git] / torrus / templates / adminfo.html
1 [% PROCESS 'html-incblocks.txt' %]
2 [% INCLUDE htmlstart
3      title='Administrative information: ' _ path(token)
4      contentClass="SingleColumnContent"
5      noTopMenu=1 %]
6
7 <H1>Administrative information</H1>
8 [% INCLUDE treename %]
9 <P>Path: [% path(token) %]</P>
10
11 [%
12 FOREACH category = adminfo.keys.sort;
13 %]
14 <H2>[% category %]</H2>
15 <DIV CLASS="Listing">
16 [%
17   counter = 0;
18   evenRow = 0;
19
20   FOREACH pname = adminfo.$category.keys.sort;
21     counter = counter + 1;
22     IF counter % 2 == 0;
23       evenRow = 1;
24     ELSE;
25       evenRow = 0;
26     END;
27 %]
28   <DIV CLASS="[% evenRow ? 'ListRowEven' : 'ListRow' %]">
29     <SPAN CLASS="NodeName">[% pname %]</SPAN>
30     <SPAN CLASS="NodeDescr">[% adminfo.$category.$pname %]</SPAN>
31     </SPAN>
32   </DIV>
33 [% END %]
34 </DIV>
35 [%
36 END %]
37
38 [% INCLUDE htmlend %]