Add club to output

This commit is contained in:
2024-03-14 13:08:27 +01:00
parent 5c4b0106fc
commit 7ec359d2f2
6 changed files with 18 additions and 4 deletions

View File

@@ -21,6 +21,7 @@
<table class="tab-summary">
<tr>
<th>Teilnehmer</th>
<th>Verein</th>
{% for dance in data.resultsPerGroup[group].dances %}
<th>{{ dance }}</th>
{% endfor %}
@@ -35,6 +36,11 @@
{% if participant.finalist or not onlyFinalists %}
<tr class="{{ rowCls }}">
<td>{{ participant.name }} ({{ participant.id }})</td>
<td>
{% if participant.club is not none %}
{{ participant.club}}
{% endif %}
</td>
{% for dance in data.resultsPerGroup[group].dances %}
{% block danceResult scoped %}
{% set res = activeGroup[participant][loop.index0] %}