]> ruin.nu Git - ndwebbie.git/blob - root/src/members/defenders.tt2
List of members with fleets and other information
[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         </tr>
11 [% FOR m IN members %]
12         <tr align="left" class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]">
13                 <td><input type="button" onclick="$('#member[% m.uid %]').toggle()" value="&dArr;" title="Show fleets"></td>
14                 <td>[% m.username %]</td>
15                 <td>[% m.race %]</td>
16                 <td>[% m.time %]</td>
17                 <td>[% m.sms_note | html %]</td>
18                 <td>[% IF m.call_if_needed %]<b>YES</b>[%END%]</td>
19         </tr>
20         <tr id="member[% m.uid %]" class="hidden">
21                 <td></td>
22                 <td colspan="8">
23                 [% PROCESS inc/missionlist.tt2 missions=m.fleets %]
24                 </td>
25         </tr>
26 [% END %]
27 </table>