hacky-ruadat/templates/stat.boats.html.tera

32 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-10-31 16:07:15 +01:00
{% import "includes/macros" as macros %}
{% extends "base" %}
{% block content %}
2024-03-04 13:28:42 +01:00
<div class="max-w-screen-lg w-full">
<h1 class="h1">Bootsauswertung</h1>
2024-04-06 15:27:35 +02:00
<table id="basic">
<thead>
<tr>
<th>Name</th>
<th>Ort</th>
{% for year in stat.pot_years | sort | reverse %}<th>{{ year }}</th>{% endfor %}
</tr>
</thead>
<tbody>
{% for boat in stat.boats %}
<tr>
<td>{{ boat.name }}</td>
<td>{{ boat.location }}</td>
{% for year in stat.pot_years | sort | reverse %}
<td>
{% if year~'' in boat.years %}{{ boat.years[year] }}{% endif %}
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
2024-03-04 13:28:42 +01:00
</div>
2024-04-06 15:27:35 +02:00
<script src="/public/jstable.min.js"></script>
<script>new JSTable("#basic");</script>
{% endblock content %}