Files
bus-manager/busManager/coord/templates/reports/bus_numbers.html
T
John Mullins 0c3ba727bf Initial commit
2023-08-18 18:10:53 +10:00

13 lines
247 B
HTML

<h1>Bus Numbers</h1>
<table>
<tr>
<th>Route Name</th>
<th>Number of Students</th>
</tr>
{% for bus in buses %}
<tr>
<td>{{ bus.route_name }}</td>
<td>{{ bus.num_travellers }}</td>
</tr>
{% endfor %}
</table>