sms.index.html
1.65 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% extends "template.html" %}
{% block head %}
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.18/css/dataTables.bootstrap.min.css">
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.js"></script>
<script type="text/javascript" src="https://cdn.datatables.net/1.10.18/js/dataTables.bootstrap.min.js"></script>
{% endblock %}
{% block content %}
{% include "date-selector.html" %}
<table id="smsHistory" class="display table table-hover table-striped">
<thead>
<tr>
<th>#</th>
<th>Tanggal</th>
<th>Arah</th>
<th>IMSI Modem</th>
<th>Dari/Ke</th>
<th>Pesan</th>
</tr>
</thead>
<tfoot>
<tr>
<th>#</th>
<th>Tanggal</th>
<th>Arah</th>
<th>IMSI Modem</th>
<th>Dari / Ke</th>
<th>Pesan</th>
</tr>
</tfoot>
</table>
<script>
$(document).ready(function() {
$('#smsHistory').DataTable( {
"ajax": "/sms/datatables?input_date={{ input_date}}",
"language": { "url": "//cdn.datatables.net/plug-ins/9dcbecd42ad/i18n/Indonesian.json" },
"columns": [
{ "data": "rowid" },
{ "data": "created" },
{ "data": "direction" },
{ "data": "imsi" },
{ "data": "partner" },
{ "data": "msg" }
],
"order": [
[1, "desc"]
],
"lengthMenu": [[50, 100, 200, -1], [50, 100, 200, "All"]]
} );
} );
</script>
{% endblock %}