summaryrefslogtreecommitdiffstats
path: root/data/templates/users/index.html
blob: 2168e62530aa1e3dfc2ed3266c663ec18f1d34b5 (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({"lengthMenu": [ [25, 50, 100, -1], [25, 50, 100, "All"] ] });
} );
</script>