{% if live %}
{% for tournament in live %}
{% include 'tournaments/tournament_row.html' %}
{% endfor %} {% endif %}
{% if future %}
{% for tournament in future %}
{% include 'tournaments/tournament_row.html' %}
{% endfor %} {% endif %}
{% endif %}
{% if ended %}
{% for tournament in ended %}
{% include 'tournaments/tournament_row.html' %}
{% endfor %}