Fix filtering w.r.t finalists in web styling

Mutiple rows were colored similarly of some are hidden
This commit is contained in:
2023-10-06 18:17:37 +02:00
parent 6f11554c18
commit 1d69d9fe8a
3 changed files with 9 additions and 2 deletions

View File

@@ -28,6 +28,7 @@
{% if not participant.finalist %}
{% set rowCls = "no-finalist" %}
{% endif %}
{% if participant.finalist or not onlyFinalists %}
<tr class="{{ rowCls }}">
<td>{{ participant.name }} ({{ participant.id }})</td>
{% for dance in data.results[group].dances %}
@@ -47,6 +48,7 @@
{% endblock %}
{% endfor %}
</tr>
{% endif %}
{% endblock %}
{% endfor %}
</table>