From 4136546b927f78a475cb36b442c051ecaadb605e Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Mon, 27 Jan 2020 23:39:17 +0000 Subject: [PATCH] Show when the vehicles were last seen in TTSS --- templates/vehicles.html | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/templates/vehicles.html b/templates/vehicles.html index 9c9d4e7..2302e8a 100644 --- a/templates/vehicles.html +++ b/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> -- Gitblit v1.9.1