-
Notifications
You must be signed in to change notification settings - Fork 0
/
ranking.tpl
66 lines (62 loc) · 2.12 KB
/
ranking.tpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<div class="box">
<div class="boxheader">Ranking (Global)</div>
<div class="boxcontent" style="padding: 10px 0px;">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr valign="top">
<td>
<div class="box" style="width: 500px;">
<div class="boxheader2">Pilots</div>
<div class="boxcontent" style="border-top: 0px; padding: 2px;">
<table width="100%" border="0" cellpadding="0" cellspacing="0" align="center">
{foreach $PLAYERS as $num => $player}
<tr valign="top">
<td>
<img src="http://image.eveonline.com/Character/{$player["eveid"]}_32.jpg" width="32" height="32" class="icon" style="float: left; margin: 2px;">
<a href="?p=pilot&pilot={$player["name"]}" style="font-size: 16px; font-weight: bold;">{$player["name"]}
</a> (#{$num})<br>{$player["corp"]}
{if ($player["alliance"])}
[{$player["alliance"]}]
{/if}
</td>
<td style="font-size: 16px; font-weight: bold;">{$player["points"]} points</td>
</tr>
{/foreach}
</table>
{if ($PAGES)}
<div align="center">
<hr size="1" width="80%">
<b>Page:</b>
{foreach $PAGES as $page}
{if ($page == $CURPAGE)}
{$page}
{else}
<a href="?p=ranking&page={$page}">{$page}</a>
{/if}
{/foreach}
</div>
{/if}
</div>
</div>
</td>
<td style="padding: 0px 10px;">
<div class="box" style="width: 240px;">
<div class="boxheader2">Alliances</div>
<div class="boxcontent" style="border-top: 0px;">
{foreach $ALLIANCES as $num => $alliance}
{$num}: {$alliance["namelink"]} [{$alliance["points"]}]<br>
{/foreach}
</div>
</div>
<div class="box" style="width: 240px; margin-top: 10px;">
<div class="boxheader2">Corporations</div>
<div class="boxcontent" style="border-top: 0px;">
{foreach $CORPORATIONS as $num => $corp}
{$num}: {$corp["namelink"]} [{$corp["points"]}]<br>
{/foreach}
</div>
</div>
</td>
</tr>
</table>
</div>
</div>