Files
flask-formula10/templates/season-races.jinja
2024-02-14 12:34:47 +01:00

24 lines
656 B
Django/Jinja

<table class="table table-bordered">
<thead>
<tr>
<th scope="col" class="text-center">Grand Prix</th>
<th scope="col" class="text-center">Date</th>
<th scope="col" class="text-center">Winner</th>
<th scope="col" class="text-center">Constructor</th>
<th scope="col" class="text-center">Laps</th>
<th scope="col" class="text-center">Best Lap</th>
</tr>
</thead>
<tbody>
{% for race in races %}
<tr>
<td>{{ race.name }}</td>
<td>{{ race.date }}</td>
<td>Winner</td>
<td>Constructor</td>
<td>Laps</td>
<td>Best Lap</td>
</tr>
{% endfor %}
</tbody>
</table>