aboutsummaryrefslogtreecommitdiff
blob: 4607049e3d419a6720823773501261f95c6159ff (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
{% extends 'base.html.twig' %}

{% block body %}
<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>
<canvas id="ctx"></canvas>
{% 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/chartOfReadings.js') }}"></script
{% endblock %}