improvements, styling, additional infos
This commit is contained in:
@ -3,15 +3,19 @@
|
||||
{% extends "base" %}
|
||||
{% block content %}
|
||||
<link rel="stylesheet" href="/public/table.css" />
|
||||
<div class="max-w-screen-lg w-full">
|
||||
<div class="w-full">
|
||||
<h1 class="h1">Abzeichen für {{ rowingbadge_year }}</h1>
|
||||
<div class="text-black dark:text-white">
|
||||
<table id="basic">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
<th>Äquatorpreis</th>
|
||||
<th>Fahrtenabzeichen (FA) geschafft</th>
|
||||
<th>Erster Log</th>
|
||||
<th>Letzter Log</th>
|
||||
<th>Gesamt-KM</th>
|
||||
<th>Äquatorpreis (ÄP)</th>
|
||||
<th>ÄP diese<br>Saison bekommen</th>
|
||||
<th>Fahrtenabzeichen (FA)<br>geschafft</th>
|
||||
<th>FA - KM</th>
|
||||
<th>FA - fehlende KM</th>
|
||||
<th>Eintagesausfahrten</th>
|
||||
@ -24,7 +28,15 @@
|
||||
{% set achievement = person.1 %}
|
||||
<tr>
|
||||
<td>{{ user.name }}</td>
|
||||
<td>{% if achievement.new_equatorprice_this_season %}(NEU!) {% endif %}{{ achievement.curr_equatorprice_name }} </td>
|
||||
<td>{% if achievement.year_first_mentioned %}{{ achievement.year_first_mentioned }}{% endif %}</td>
|
||||
<td>{% if achievement.year_last_mentioned %}{{ achievement.year_last_mentioned }}{% endif %}</td>
|
||||
<td>{{ achievement.all_time_km }}</td>
|
||||
<td>
|
||||
{{ achievement.curr_equatorprice_name }}
|
||||
</td>
|
||||
<td>
|
||||
{% if achievement.new_equatorprice_this_season %}🎉{% else %}-{% endif %}
|
||||
</td>
|
||||
{% if achievement.rowingbadge %}
|
||||
{% set badge = achievement.rowingbadge %}
|
||||
<td>
|
||||
@ -57,11 +69,11 @@
|
||||
</details>
|
||||
</td>
|
||||
{% else %}
|
||||
<td>no birthdate of this person</td>
|
||||
<td>no birthdate of this person</td>
|
||||
<td>no birthdate of this person</td>
|
||||
<td>no birthdate of this person</td>
|
||||
<td>no birthdate of this person</td>
|
||||
<td>Geb.datum fehlt 👻</td>
|
||||
<td>Geb.datum fehlt 👻</td>
|
||||
<td>Geb.datum fehlt 👻</td>
|
||||
<td>Geb.datum fehlt 👻</td>
|
||||
<td>Geb.datum fehlt 👻</td>
|
||||
{% endif %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
|
Reference in New Issue
Block a user