add some missing files, complete separation of templates, factor common page wrapper...
[buildfarm-server.git] / templates / members.tt
1 [% WRAPPER 'page.tt' 
2         title = 'PostgreSQL BuildFarm Members'
3         bodyclass = 'members'
4         pagebutton = 'members'
5 %]
6 <h1>PostgreSQL BuildFarm Members</h1>
7     <p>Click branch links to see build history. Click the heading links to resort the list. Select members by checkbox and hit the button at the bottom to create a status custom filter.</p>
8     <form name="filter" method="GET" action="/cgi-bin/show_status.pl">
9     <table cellspacing="0">
10     <tr>
11     <td>&nbsp;</td>
12     <th><a href="/cgi-bin/show_members.pl?sort_by=name">Name</a><br /><a href="/cgi-bin/show_members.pl?sort_by=owner">Owner</a></th>
13     <th><a href="/cgi-bin/show_members.pl?sort_by=os">OS / Version</a></th>
14     <th><a href="/cgi-bin/show_members.pl?sort_by=compiler">Compiler / Version</a></th>
15     <th><a href="/cgi-bin/show_members.pl?sort_by=arch">Arch</a></th>
16     <th>Branches reported on<br />(most recent report)</th>
17     </tr>
18 [% alt = true %]
19 [% FOREACH row IN statrows ;
20     have_recent = 0;
21     FOREACH branch_days IN row.branches.split(',') ;
22        branch_fields = branch_days.split(':');
23        branch_day = branch_fields.1;
24        IF branch_day < 365 ; have_recent = 1; END;
25     END;
26  IF have_recent ;
27 %]    <tr [%- IF alt %]class="alt"[% END -%]>
28     [% alt = ! alt %]
29     <td><input type="checkbox" name="member" value="[% row.name %]" /></td>
30     <td>[% row.name %]<br />[% row.owner_email %]</td>
31     <td>[% row.operating_system %]<br />[% row.os_version %]</td>
32     <td>[% row.compiler %]<br />[% row.compiler_version %]</td>
33     <td>[% row.arch %]</td>
34     <td class="branch">[% IF ! row.branches ; '&nbsp;' ; END -%]
35     <ul>
36     [%- 
37        FOREACH branch_days IN row.branches.split(',') ;
38        branch_fields = branch_days.split(':');
39        branch = branch_fields.0;
40        branch_day = branch_fields.1;
41        IF branch_day < 365 ;
42     %]<li><a 
43     href="show_history.pl?nm=[% row.name %]&amp;br=[% branch %]"
44     title="History"
45     >[% branch %]</a>&nbsp;([% branch_day %]&nbsp;days&nbsp;ago)</li>[% END; END %]</ul></td>
46     </tr>
47 [% END; END %]
48     </table>
49     <input type="submit" value="Make Filter" />
50     </form>
51 [% END %]