You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
padelclub_backend/tournaments/templates/tournaments/tournaments_list.html

28 lines
622 B

{% extends 'tournaments/base.html' %}
{% block head_title %}{{ title }}{% endblock %}
{% block first_title %}Tournois{% endblock %}
{% block second_title %}{{ title }}{% endblock %}
{% block content %}
{% include 'tournaments/navigation_base.html' %}
<div class="grid-x">
{% if tournaments %}
<div class="cell medium-12 large-6 topblock padding10">
<div>
{% for tournament in tournaments %}
{% include 'tournaments/tournament_row.html' %}
{% endfor %}
</div>
</div>
{% endif %}
</div>
{% endblock %}