2019-01-14 01:27:48 +00:00
|
|
|
<table id="player_table" class="table table-hover link-table">
|
|
|
|
<thead class="bg-dark">
|
|
|
|
<tr>
|
|
|
|
<th>Player Username</th>
|
|
|
|
<th># of Locations</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for player in player_list %}
|
|
|
|
<tr>
|
2019-04-13 01:04:13 +00:00
|
|
|
<td><a class="" href="{{ player.link }}">{{ player }}</a></td>
|
2019-01-14 01:27:48 +00:00
|
|
|
<td>{{ player.loc_count }} </td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
$('#player_table').DataTable();
|
|
|
|
});
|
|
|
|
</script>
|