13 lines
247 B
HTML
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> |