Fixed seating_capacity mapping

This commit is contained in:
John Mullins
2023-08-31 12:02:21 +10:00
parent 6caf62e72f
commit b93d488598
@@ -29,9 +29,9 @@
<td>{{ route.shuttle_name }}</td>
<td>{{ route.shuttle_count }}</td>
{% if route.over_capacity %}
<td style="color:red"><b>{{ route.seating_capacity }}</b></td>
<td style="color:red"><b>{{ route.bus.seating_capacity }}</b></td>
{% else %}
<td>{{ route.seating_capacity }}</td>
<td>{{ route.bus.seating_capacity }}</td>
{% endif %}
</tr>
{% endfor %}