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

{% block body %}
<table class="table">
    <thead class="thead">
    <tr class="tr">
        <th>Name</th>
        <th>Time</th>
        <th>Date</th>
        <th>Destination</th>
        <th>AQI</th>
    </tr>
    </thead>
    <tbody class="tbody">
    <tr class="tr">
        {% for table in data %}
        <td class="td">{{ table.name }}</td>
        <td class="td">{{ table.time }}</td>
        <td class="td">{{ table.date }}</td>
        <td class="td">{{ table.finalStop }}</td>
        <td class="td">{{ table.direction }}</td>
    </tr>
    </tbody>
    {% endfor %}
</table>
{% endblock %}
{% block javascripts %}
{% endblock %}