Jacek Kowalski
2020-01-27 4136546b927f78a475cb36b442c051ecaadb605e
templates/vehicles.html
@@ -80,6 +80,28 @@
{% endfor %}
</table>
<table>
<caption>Vehicles in TTSS</caption>
<thead>
<tr>
<th>Vehicle</th> <th>Line</th> <th>Last seen</th>
</tr>
</thead>
{% for map in mapping %}
<tr>
<td>
{{ map.num | e }}
</td>
<td>
{{ map.line | default('?') | e }}
</td>
<td>
{{ map.date | time_diff | default('now') }}
</td>
</tr>
{% endfor %}
</table>
Generated at {{ "now" | date("Y-m-d H:i:s P") }}
</table>