-
Notifications
You must be signed in to change notification settings - Fork 0
/
top10.tpl
121 lines (92 loc) · 3.73 KB
/
top10.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<div class="box">
<div class="boxheader">Top 10 Summary</div>
<div class="boxcontent" style="padding-bottom: 10px;">
<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center" style="padding-top: 10px;">
<tr valign="top">
<td align="center">
<!-- Top 10 Final Blows -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Final Blows</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10FINALBLOWS as $num => $pilot}
{$num}: <a href="?p=pilot&pilot={$pilot["name"]}">{$pilot["name"]}</a>
[{$pilot["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$pilot["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
<td align="center">
<!-- Top 10 Participation -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Participation</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10PARTICIPATION as $num => $pilot}
{$num}: <a href="?p=pilot&pilot={$pilot["name"]}">{$pilot["name"]}</a>
[{$pilot["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$pilot["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
<td align="center">
<!-- Top 10 Ships Flown -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Ships Flown</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10SHIPSFLOWN as $num => $ship}
{$num}: <a href="?p=kills&itype={$ship["name"]}">{$ship["name"]}</a>
[{$ship["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$ship["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
</tr>
<tr>
<td colspan="3"><br></td>
</tr>
<tr valign="top">
<td align="center">
<!-- Top 10 Systems -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Systems</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10SYSTEMS as $num => $system}
{$num}: <a href="?p=system&system={$system["name"]}">{$system["name"]}</a>
[{$system["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$system["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
<td align="center">
<!-- Top 10 Ships Destroyed -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Ships Destroyed</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10DESTROYED as $num => $ship}
{$num}: <a href="?p=kills&type={$ship["name"]}">{$ship["name"]}</a>
[{$ship["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$ship["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
<td align="center">
<!-- Top 10 Victims -->
<div class="box" style="width: 240px;">
<div class="boxheader2">Top 10 Victims</div>
<div class="boxcontent stats" style="border-top: 0px;">
{foreach $TOP10VICTIMS as $num => $pilot}
{$num}: <a href="?p=pilot&pilot={$pilot["name"]}">{$pilot["name"]}</a>
[{$pilot["num"]}]<br>
<img src="{$TEMPLATEURL}/images/bar.png" width="{$pilot["bar"]*19}" height="3" style="padding-top: 2px; padding-bottom: 1px;"><br>
{/foreach}
</div>
</div>
</td>
</tr>
</table>
</div>
</div>