|
|
|
|
@ -11,18 +11,6 @@ |
|
|
|
|
{% load tz %} |
|
|
|
|
|
|
|
|
|
<div class="grid-x"> |
|
|
|
|
<div class="cell medium-10 large-5 topblock my-block"> |
|
|
|
|
<div> |
|
|
|
|
<label class="title">Vos tournois à venir</label> |
|
|
|
|
{% if upcoming_tournaments %} |
|
|
|
|
{% for tournament in upcoming_tournaments %} |
|
|
|
|
{% include 'tournaments/tournament_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
{% else %} |
|
|
|
|
Aucun tournoi à venir |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="cell medium-10 large-5 topblock my-block"> |
|
|
|
|
<div> |
|
|
|
|
<label class="title">Vos tournois en cours</label> |
|
|
|
|
@ -36,7 +24,8 @@ |
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="cell medium-offset-2 large-offset-1 medium-10 large-5 topblock my-block"> |
|
|
|
|
|
|
|
|
|
<div class="cell large-offset-1 medium-10 large-5 topblock my-block"> |
|
|
|
|
<div> |
|
|
|
|
<label class="title">Vos tournois terminés</label> |
|
|
|
|
{% if ended_tournaments %} |
|
|
|
|
@ -48,4 +37,17 @@ |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="cell medium-10 large-5 topblock my-block"> |
|
|
|
|
<div> |
|
|
|
|
<label class="title">Vos tournois à venir</label> |
|
|
|
|
{% if upcoming_tournaments %} |
|
|
|
|
{% for tournament in upcoming_tournaments %} |
|
|
|
|
{% include 'tournaments/tournament_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
{% else %} |
|
|
|
|
Aucun tournoi à venir |
|
|
|
|
{% endif %} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
{% endblock %} |
|
|
|
|
|