|
|
|
|
@ -10,31 +10,31 @@ |
|
|
|
|
|
|
|
|
|
{% load static %} |
|
|
|
|
|
|
|
|
|
{% include 'tournaments/navigation_tournament.html' %} |
|
|
|
|
|
|
|
|
|
{% if teams %} |
|
|
|
|
|
|
|
|
|
{% include 'tournaments/navigation_tournament.html' %} |
|
|
|
|
<div class="grid-x padding-bottom"> |
|
|
|
|
|
|
|
|
|
<div class="cell medium-6 large-6 my-block"> |
|
|
|
|
{% if selected_teams|length > 0 %} |
|
|
|
|
<label class="title topmargin20">Équipes sélectionnées : {{ selected_teams|length }}</label> |
|
|
|
|
|
|
|
|
|
<div class="bubble"> |
|
|
|
|
|
|
|
|
|
{% if tournament.registration_count_display %} |
|
|
|
|
<label class="title">{{ tournament.registration_count_display }}</label> |
|
|
|
|
{% for team in selected_teams %} |
|
|
|
|
{% include 'tournaments/team_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
{% for team in teams %} |
|
|
|
|
{% if waiting_teams|length > 0 %} |
|
|
|
|
<label class="title topmargin20">Équipes en attente : {{ waiting_teams|length }}</label> |
|
|
|
|
|
|
|
|
|
<div class="bubble"> |
|
|
|
|
{% for team in waiting_teams %} |
|
|
|
|
{% include 'tournaments/team_row.html' %} |
|
|
|
|
|
|
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
{% endif %} |
|
|
|
|
|