forked from BNUACM/bnuoj-web-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ranklist.php
35 lines (34 loc) · 1.04 KB
/
ranklist.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
<?php
$pagetitle="Ranklist";
include_once("header.php");
include_once("functions/sidebars.php");
?>
<div id="flip-scroll" class="span9">
<!-- insert the page content here -->
<table class="table table-hover table-striped basetable cf" id="rank" width="100%">
<thead>
<tr>
<th width='10%'> Rank </th>
<th width='20%'> Username </th>
<th width='40%'> Nickname </th>
<th width='10%'> Local AC </th>
<th width='10%'> Total AC </th>
<th width='10%'> All </th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
</tfoot>
</table>
</div>
<div class="span3">
<?=sidebar_common()?>
</div>
<script type="text/javascript">
var userperpage=<?=$config["limits"]["users_per_page"]?>;
</script>
<script type="text/javascript" src="js/ranklist.js?<?=filemtime("js/ranklist.js")?>"></script>
<?php
include_once("footer.php");
?>