summaryrefslogtreecommitdiffstats
path: root/data/templates/users/index.html
blob: 71eccf94a912517ddb5728a77acd3c730509c1d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<table id="usertable" class="table table-bordered table-striped table-condensed">
	<thead>
		<tr><th>ID</th></th><th>Name</th></tr>
	</thead>
	<tbody>
		{{{DATA}}}
	</tbody>
</table>

<script type="text/javascript">
$(document).ready(function() {
    $('#usertable').DataTable();
} );
</script>