blob: 2fc12a20545bf844eeb51ca2636d15179c6c8adc (
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
|
{% extends 'base.html.twig' %}
{% block body %}
<div id="wrapper">
<table>
<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>
<p id="aq">{{ Aqi }}</p>
<img src="https://www.ourair.org/wp-content/uploads/AQItable.gif">
{% endblock %}
{% block javascripts %}
<script src="{{ asset('js/realtime.js') }}"></script>
{% endblock %}
|