- {% if running_tournaments %}
- {% for tournament in running_tournaments %}
- {% include 'tournaments/tournament_row.html' %}
- {% endfor %}
- {% else %}
-
- Aucun tournoi en cours
-
- {% endif %}
-
+ {% for tournament in running_tournaments %}
+ {% include 'tournaments/tournament_row.html' %}
+ {% endfor %}
+ {% endif %}
+ {% if upcoming_tournaments %}
+
- {% if upcoming_tournaments %}
- {% for tournament in upcoming_tournaments %}
- {% include 'tournaments/tournament_row.html' %}
- {% endfor %}
- {% else %}
-
- Aucun tournoi à venir
-
- {% endif %}
+ {% for tournament in upcoming_tournaments %}
+ {% include 'tournaments/tournament_row.html' %}
+ {% endfor %}
+ {% endif %}
-