]> ruin.nu Git - ndwebbie.git/blob - root/src/calls/defleeches.tt2
Show recevied and sent value on def leeches page
[ndwebbie.git] / root / src / calls / defleeches.tt2
1 [% META title = 'Def Leeches' %]
2 <table>
3         <tr>
4         <th>User</th>
5         <th>Def Points</th>
6         <th>Def Missions</th>
7         <th>Recalled missions</th>
8         <th>Calls</th>
9         <th>Defended calls</th>
10         <th title="Compared to own value at the time">Value received</th>
11         <th title="Compared to own value at the time">Value sent</th>
12         </tr>
13 [% FOR m IN members %]
14         <tr align="right" class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]">
15         <td align="left">[% m.username %]</td>
16         <td>[% m.defense_points %]</td>
17         <td>[% m.fleets %]</td>
18         <td>[% m.recalled %]</td>
19         <td>[% m.calls %]</td>
20         <td>[% m.defended_calls %]</td>
21         <td>[% m.value %]</td>
22         <td>[% m.sent_value %]</td>
23         </tr>
24 [% END %]
25 </table>