Added date selector to shuttles and traveller counts

This commit is contained in:
John Mullins
2024-12-13 09:36:41 +11:00
parent 320303f95f
commit dabce7f360
3 changed files with 9 additions and 9 deletions
@@ -19,11 +19,11 @@
{% for route in routes %}
{% if route.route_stops %}
<h1 style="font-size: 2.5em">{{ route.bus.route_name }}</h1>
<h1 style="font-size: 2.5em">{{ route.name }}</h1>
<p style="text-align:right; font-size:12px">
Date: {{ date }}<br>
Total Travellers: {{ route.bus.traveller_count }}<br>
Seating Capacity: {{ route.bus.seating_capacity }}
Total Travellers: {{ route.traveller_count }}<br>
Seating Capacity: {{ route.seating_capacity }}
</p>
{% endif %}
{% for stop in route.route_stops %}