summaryrefslogtreecommitdiffstats
path: root/data/templates/products/bestbefore.html
blob: b5451a4c157c3b30802a2c76e214e7b34facde5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<table id="producttable" class="table table-bordered table-striped table-condensed">
	<thead>
		<tr><th>EAN</th></th><th>Name</th><th>Amount</th><th>Best Before Date</th></tr>
	</thead>
	<tbody>
		{{{DATA}}}
	</tbody>
</table>

<script type="text/javascript">
$(document).ready(function() {
    $('#producttable').DataTable({"lengthMenu": [ [25, 50, 100, -1], [25, 50, 100, "All"] ] });
} );
</script>