33 lines
999 B
HTML
33 lines
999 B
HTML
{% for route in routes %}
|
|
<h1>{{ route.route_name }}</h1>
|
|
{% for stop in route.stops %}
|
|
<tr>
|
|
<th>Stop Number</th>
|
|
<th>Address</th>
|
|
<th>Pickup Time</th>
|
|
<th>Drop-off Time</th>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ stop.stop_num }}</th>
|
|
<th>{{ stop.name }}</th>
|
|
<th>{{ stop.am }}</th>
|
|
<th>{{ stop.pm }}</th>
|
|
</tr>
|
|
{% for traveller in stop.travellers %}
|
|
<tr>
|
|
<th>Student</th>
|
|
<th>Mon AM</th>
|
|
<th>Mon PM</th>
|
|
<th>Tue AM</th>
|
|
<th>Tue PM</th>
|
|
</tr>
|
|
<tr>
|
|
<th>{{ traveller.traveller }}</th>
|
|
<th>{{ traveller.mon_am }}</th>
|
|
<th>{{ traveller.mon_pm }}</th>
|
|
<th>{{ traveller.tue_am }}</th>
|
|
<th>{{ traveller.tue_pm }}</th>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
{% endfor %} |