-
Notifications
You must be signed in to change notification settings - Fork 0
/
statships.tpl
89 lines (81 loc) · 2.45 KB
/
statships.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
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="boxtl" width="4" height="23"></td>
<td class="boxtop boxheader">Statistics for {$TITLE}</td>
<td class="boxtr" width="4" height="23"></td>
</tr>
<tr>
<td class="boxl" width="4"></td>
<td class="boxcontent stats" align="center">
<form>
Show detailed statistics:
<select name="p" onchange="javascript:this.form.submit()">
<option value="statsummary">Summaries
<option value="statcorps">Kills by Corporation
<option value="statalliances">Kills by Alliance
<option value="statships" selected>Ships Destroyed
<option value="statitems">Items Destroyed
</select>
</form>
</td>
<td class="boxr" width="4"></td>
</tr>
<tr>
<td class="boxbl" width="4" height="4"></td>
<td class="boxbot"></td>
<td class="boxbr" width="4" height="4"></td>
</tr>
</table>
<br>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td>
<table border="0" cellpadding="0" cellspacing="0" width="230">
<tr>
<td class="boxtl" width="4" height="23"></td>
<td class="boxtop boxheader">Ship Types</td>
<td class="boxtr" width="4" height="23"></td>
</tr>
<tr>
<td class="boxl" width="4"></td>
<td class="boxcontent stats">
{foreach $SHIPTYPES as $num => $ship}
{$num}: {$ship["Name"]} ({$ship["Destroyed"]})<br>
<img src="killboard/img/gradient_blue.png" width="{$ship["Width"]}" height="8"><br>
{/foreach}
</td>
<td class="boxr" width="4"></td>
</tr>
<tr>
<td class="boxbl" width="4" height="4"></td>
<td class="boxbot"></td>
<td class="boxbr" width="4" height="4"></td>
</tr>
</table>
</td>
<td>
<table border="0" cellpadding="0" cellspacing="0" width="230">
<tr>
<td class="boxtl" width="4" height="23"></td>
<td class="boxtop boxheader">Ship Classes</td>
<td class="boxtr" width="4" height="23"></td>
</tr>
<tr>
<td class="boxl" width="4"></td>
<td class="boxcontent stats">
{foreach $SHIPCLASSES as $class => $num}
{$num}: {$class} ({$num})<br>
<img src="killboard/img/gradient_blue.png" width="{$ship["Width"]}" height="8"><br>
{/foreach}
</td>
<td class="boxr" width="4"></td>
</tr>
<tr>
<td class="boxbl" width="4" height="4"></td>
<td class="boxbot"></td>
<td class="boxbr" width="4" height="4"></td>
</tr>
</table>
</td>
</tr>
</table>