Initial commit
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user