Add club to output
This commit is contained in:
@@ -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] %}
|
||||
|
||||
Reference in New Issue
Block a user