|
|
|
|
@ -23,7 +23,7 @@ |
|
|
|
|
{% include 'tournaments/tournament_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
|
{% if live|length > 10 %} |
|
|
|
|
{% if live|length >= 10 %} |
|
|
|
|
<div class="right"> |
|
|
|
|
{% if club %} |
|
|
|
|
<a href="{% url 'tournaments' %}?filter=1&club={{ club.id }}">Voir tous...</a> |
|
|
|
|
@ -43,7 +43,7 @@ |
|
|
|
|
{% include 'tournaments/tournament_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
|
{% if future|length > 10 %} |
|
|
|
|
{% if future|length >= 10 %} |
|
|
|
|
<div class="right"> |
|
|
|
|
{% if club %} |
|
|
|
|
<a href="{% url 'tournaments' %}?filter=0&club={{ club.id }}">Voir tous...</a> |
|
|
|
|
@ -70,7 +70,7 @@ |
|
|
|
|
{% include 'tournaments/tournament_row.html' %} |
|
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
|
|
{% if ended|length > 10 %} |
|
|
|
|
{% if ended|length >= 10 %} |
|
|
|
|
<div class="right"> |
|
|
|
|
{% if club %} |
|
|
|
|
<a href="{% url 'tournaments' %}?filter=2&club={{ club.id }}">Voir tous...</a> |
|
|
|
|
|