blob: fdc6dd923f92fe36287d6f77d2ff75348829c5e9 (
plain)
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
|
{% extends 'base.html.twig' %}
{% block body %}
<div class="columns">
<div class="column is-narrow">
<table class="table">
<thead class="thead">
<tr class="tr">
<th>TimeStamp</th>
<th>Co</th>
<th>No</th>
<th>So</th>
</tr>
</thead>
<tbody class="tbody">
<tr class="tr">
{% for table in data %}
<td class="td">{{ table.TimeStamp }}</td>
<td class="td">{{ table.Co }}</td>
<td class="td">{{ table.No }}</td>
<td class="td">{{ table.So }}</td>
</tr>
</tbody>
{% endfor %}
</table>
</div>
<div class="column">
<canvas id="ctx"></canvas>
</div>
</div>
{% endblock %}
{% block javascripts %}
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.1/Chart.bundle.min.js"></script>
<script src="{{ asset('js/LastWeekDataChart.js') }}"></script
{% endblock %}
|