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

{% block body %}
    <div id="wrapper">
        <table border="1">
            <tr>
                <th>TimeStamp</th>
                <th>Co</th>
                <th>No</th>
                <th>So</th>
            </tr>
            <tr id="latest">
                <td>{{ TimeStamp }}</td>
                <td>{{ Co }}</td>
                <td>{{ No }}</td>
                <td>{{ So }}</td>
            </tr>
        </table>
    </div>
    <a href="/AllDataReadings">All Data Page</a>

    <p id="aq">The current air quality index is <strong>{{ Aqi }}</strong></p>
    <img src="https://www.ourair.org/wp-content/uploads/AQItable.gif">
{% endblock %}
{% block javascripts %}
    <script src="{{ asset('js/realtime.js') }}"></script>
{% endblock %}