Initial commit

This commit is contained in:
John Mullins
2023-08-18 18:10:53 +10:00
commit 0c3ba727bf
25 changed files with 1214 additions and 0 deletions
@@ -0,0 +1,13 @@
<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>