forked from infinitewarp/webstatsx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayers.php
More file actions
executable file
·40 lines (36 loc) · 948 Bytes
/
players.php
File metadata and controls
executable file
·40 lines (36 loc) · 948 Bytes
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
<?php include('header.php'); ?>
<div>
<ul class="breadcrumb">
<li>
<a href="index.php" class="ajax-link">Dashboard</a> <span class="divider">/</span>
</li>
<li>
<a href="#">Players</a>
</li>
</ul>
</div>
<div class="row-fluid">
<div class="box span12">
<div class="box-header well" data-original-title>
<h2><i class="icon-user"></i> Players</h2>
</div>
<div class="box-content">
<table class="table table-striped table-bordered bootstrap-datatable ajax-datatable">
<thead>
<tr>
<th>Username</th>
<th>Playtime</th>
<th>Last join</th>
<th>EXP gained</th>
<th>Damage taken</th>
<th>Kicked</th>
<th>Items crafted</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div><!--/span-->
</div><!--/row-->
<?php include('footer.php'); ?>