Added roll to shuttle

This commit is contained in:
st01765
2026-05-12 15:39:42 +10:00
parent 4f5842f21f
commit af2aead712
@@ -84,15 +84,38 @@
{% endif %} {% endif %}
{% for shuttle_route in route.shuttle_routes %} {% for shuttle_route in route.shuttle_routes %}
<h1 style="font-size: 2.5em">{{ shuttle_route.shuttle }}</h1> <h1 style="font-size: 2.5em">Shuttle: {{ shuttle_route.shuttle }}</h1>
<p style="text-align:right; font-size:12px"> <p style="text-align:right; font-size:12px">
Date: {{ date }}<br> Date: {{ date }}<br>
Total Travellers: {{ shuttle_route.traveller_count }} Total Travellers: {{ shuttle_route.traveller_count }}
</p> </p>
<table class="traveller"> <table class="traveller">
<tr>
<th style="width: 100%; text-align: left">Student</th>
<th style="width: 8%">Mon AM</th>
<th style="width: 8%">Mon PM</th>
<th style="width: 8%">Tue AM</th>
<th style="width: 8%">Tue PM</th>
<th style="width: 8%">Wed AM</th>
<th style="width: 8%">Wed PM</th>
<th style="width: 8%">Thu AM</th>
<th style="width: 8%">Thu PM</th>
<th style="width: 8%">Fri AM</th>
<th style="width: 8%">Fri PM</th>
</tr>
{% for traveller in shuttle_route.shuttle_travellers %} {% for traveller in shuttle_route.shuttle_travellers %}
<tr> <tr>
<td style="padding-top: 3px; padding-left: 2px; text-align: left">{{ traveller.display }}</td> <td style="padding-top: 3px; padding-left: 2px; text-align: left">{{ traveller.display }}</td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>