]> ruin.nu Git - ndwebbie.git/blob - root/src/members/defenders.tt2
Use new race infrastructure for members stats
[ndwebbie.git] / root / src / members / defenders.tt2
1 [% META title = 'Defenders' %]
2 <table>
3         <tr>
4         <th></th>
5         <th>User</th>
6         <th>Race</th>
7         <th title="The current time for the member">Time</th>
8         <th>Note</th>
9         <th>Wakeup?</th>
10         <th>Timezone</th>
11         </tr>
12 [% FOR m IN members %]
13         <tr align="left" class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]">
14                 <td><input type="button" onclick="$('#member[% m.uid %]').toggle()" value="&dArr;" title="Show fleets"></td>
15                 <td>[% m.username %]</td>
16                 <td>[% m.race %]</td>
17                 <td>[% m.time %]</td>
18                 <td>[% m.sms_note | html %]</td>
19                 <td>[% IF m.call_if_needed %]<b>YES</b>[%END%]</td>
20                 <td>[% m.timezone | html %]</td>
21         </tr>
22         <tr id="member[% m.uid %]" class="hidden">
23                 <td></td>
24                 <td colspan="8">
25                 [% PROCESS inc/missionlist.tt2 missions=m.fleets %]
26                 </td>
27         </tr>
28 [% END %]
29 </table>