-
Notifications
You must be signed in to change notification settings - Fork 9
/
top.php
48 lines (48 loc) · 827 Bytes
/
top.php
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
<?php
include 'lib.php' ;
html_head('Top players ',
array(
'style.css',
'options.css',
'top.css'
),
array(
'lib/jquery.js',
'../variables.js.php'
, 'options.js'
, 'html.js'
, 'math.js'
, 'image.js'
, 'top.js'
)
) ;
?>
<body onload="init(event)">
<?php
html_menu(true) ;
?>
<div id="top" class="section">
<h1>Top players</h1>
<div id="tabs"></div>
<table>
<thead>
<tr>
<td>#</td>
<td>Avatar</td>
<td>Nick</td>
<td id="matches" class="sortable">Games</td>
<td id="score" class="sortable">Score</td>
<td id="ratio" class="sortable">Ratio</td>
<td id="eval_avg" class="sortable">Evaluation</td>
</tr>
</thead>
<tbody id="loading">
<tr>
<td colspan="7">Loading...</td>
</tr>
</tbody>
<tbody id="table"></tbody>
</table>
</div>
<?php
html_foot() ;