Added roll to shuttle
This commit is contained in:
@@ -84,15 +84,38 @@
|
||||
{% endif %}
|
||||
|
||||
{% 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">
|
||||
Date: {{ date }}<br>
|
||||
Total Travellers: {{ shuttle_route.traveller_count }}
|
||||
</p>
|
||||
<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 %}
|
||||
<tr>
|
||||
<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>
|
||||
{% endfor %}
|
||||
</table>
|
||||
|
||||
Reference in New Issue
Block a user