Added reports to top left admin menu bar
Combined summary pages Changed admin panel to index
This commit is contained in:
@@ -23,29 +23,29 @@
|
||||
|
||||
{% for route in routes %}
|
||||
<h1 style="font-size: 2.5em">{{ route.bus.company }} - {{ route.bus }}</h1>
|
||||
{% for driver in route.drivers %}
|
||||
<p><b>Driver:</b> {{ driver }} ({{ driver.phone_number }})</p>
|
||||
{% endfor %}
|
||||
<table class="traveller">
|
||||
{% for driver in route.drivers %}
|
||||
<p><b>Driver:</b> {{ driver }} ({{ driver.phone_number }})</p>
|
||||
{% endfor %}
|
||||
<table class="traveller">
|
||||
<tr>
|
||||
<th style="width: 25%">Student</th>
|
||||
<th style="width: 25%">Parent A</th>
|
||||
<th style="width: 25%">Parent B</th>
|
||||
<th style="width: 25%">Emergency Contact A</th>
|
||||
<th style="width: 25%">Emergency Contact B</th>
|
||||
<th style="width: 40%">Driver notes</th>
|
||||
</tr>
|
||||
{% for traveller in route.travellers %}
|
||||
<tr>
|
||||
<th style="width: 25%">Student</th>
|
||||
<th style="width: 25%">Parent A</th>
|
||||
<th style="width: 25%">Parent B</th>
|
||||
<th style="width: 25%">Emergency Contact A</th>
|
||||
<th style="width: 25%">Emergency Contact B</th>
|
||||
<th style="width: 40%">Driver notes</th>
|
||||
<td>{{ traveller.traveller.last_name }}, {{ traveller.traveller.first_name }} ({{ traveller.traveller.school.shortName }})</td>
|
||||
<td>{{ traveller.parent_a }}</td>
|
||||
<td>{{ traveller.parent_b }}</td>
|
||||
<td>{{ traveller.contact_a }}</td>
|
||||
<td>{{ traveller.contact_b }}</td>
|
||||
<td>{{ traveller.note }}</td>
|
||||
</tr>
|
||||
{% for traveller in route.travellers %}
|
||||
<tr>
|
||||
<td>{{ traveller.traveller.last_name }}, {{ traveller.traveller.first_name }} ({{ traveller.traveller.school.shortName }})</td>
|
||||
<td>{{ traveller.parent_a }}</td>
|
||||
<td>{{ traveller.parent_b }}</td>
|
||||
<td>{{ traveller.contact_a }}</td>
|
||||
<td>{{ traveller.contact_b }}</td>
|
||||
<td>{{ traveller.note }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
<br>
|
||||
{% endfor %}
|
||||
</table>
|
||||
<br>
|
||||
<p style="page-break-after: always">
|
||||
{% endfor %}
|
||||
Reference in New Issue
Block a user