]> ruin.nu Git - ndwebbie.git/blob - root/lib/inc/missionlist.tt2
Show value percentage for defenders on call page
[ndwebbie.git] / root / lib / inc / missionlist.tt2
1         <table>
2                 <tr><th></th><th>Coords</th><th>Name</th><th>Mission</th><th>Tick</th><th>ETA</th><th>Amount</th><th>Back</th></tr>
3         [% FOR m IN missions %]
4                 <tr align="center" class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]" onclick="$('#fleet[% m.fid %]').toggle()">
5                         <td>
6                 [% IF m.ships %]
7                                 <b>&dArr;</b>
8                 [% END %]
9                         </td><td>
10                 [% IF m.planet %]
11                                 <a href="[% c.uri_for('/stats/planet', m.planet) %]">[% m.coords %]</a>
12                 [% END %]
13                         </td>
14                         <td>[% m.name %]</td>
15                         <td class="[% m.mission %]">[% m.mission %]</td>
16                         <td>[% m.tick %]</td>
17                         <td>[% m.eta %]</td>
18                         <td>[% m.amount %]</td>
19                         <td>[% m.back %]</td>
20                         [% IF m.value_ratio %]
21                         <td>[% m.value_ratio %]%</td>
22                         [% END %]
23                         [% IF m.fleetcatch %]
24                         <td class="Hostile">FLEETCATCH!!</td>
25                         [% END %]
26                         [% IF m.recalled %]
27                         <td>Recalled</td>
28                         [% END %]
29                 </tr>
30                 [% IF m.ships %]
31                 <tr id="fleet[% m.fid %]" class="hidden">
32                         <td>
33                         <td colspan="5"><table>
34                         [% FOR s IN m.ships %]
35                                 <tr class="[% loop.count % 2 == 0 ? 'even' : 'odd' %]">
36                                         <td>[% s.ship %]</td><td>[% s.amount %]</td>
37                                 </tr>
38                         [% END %]
39                         </table></td>
40                 </tr>
41                 [% END %]
42         [% END %]
43         </table>