show type of boat

This commit is contained in:
2024-09-11 19:10:02 +02:00
parent 1da9412904
commit 14bfb695d9
4 changed files with 17 additions and 8 deletions

View File

@ -103,7 +103,7 @@
<div class="bg-white dark:bg-primary-900 text-black dark:text-white rounded-md block shadow mt-5"
role="alert">
<h2 class="h2">
Deine Ruderkarriere
Deine Ruderkarriere
<span class="text-xl"
onclick="document.getElementById('call-for-action').showModal()">💡</span>
</h2>

View File

@ -9,6 +9,7 @@
<thead>
<tr>
<th>Name</th>
<th>Art</th>
<th>Eigentümer</th>
<th>Ort</th>
{% for year in stat.pot_years | sort | reverse %}<th>{{ year }}</th>{% endfor %}
@ -18,6 +19,7 @@
{% for boat in stat.boats %}
<tr>
<td>{{ boat.name }}</td>
<td>{{ boat.cat }}</td>
<td>{{ boat.owner }}</td>
<td>{{ boat.location }}</td>
{% for year in stat.pot_years | sort | reverse %}