Don't display final selection in the final tournament page
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
This commit is contained in:
parent
1138885fb4
commit
8216e0943f
|
@ -105,7 +105,7 @@
|
|||
{% for participation, note in notes %}
|
||||
<li>
|
||||
<strong>{{ participation.team }} :</strong> {{ note|floatformat }}
|
||||
{% if available_notes_2 %}
|
||||
{% if available_notes_2 or user.registration.is_volunteer %}
|
||||
{% if not tournament.final and participation.mention %}
|
||||
— {{ participation.mention }}
|
||||
{% endif %}
|
||||
|
@ -113,7 +113,7 @@
|
|||
— {{ participation.mention_final }}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% if participation.final %}
|
||||
{% if participation.final and not tournament.final %}
|
||||
<span class="badge badge-sm text-bg-warning">
|
||||
<i class="fas fa-medal"></i>
|
||||
{% trans "Selected for final tournament" %}
|
||||
|
|
Loading…
Reference in New Issue