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

42 lines
1.3 KiB

{% extends 'tournaments/base.html' %}
{% block head_title %}{{ head_title }}{% endblock %}
{% block first_title %}{{ first_title }}{% endblock %}
{% block second_title %}{{ second_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 %}
{% if first_tournament_prog_url and tournaments %}
<div class="cell medium-6 large-6 topblock padding10">
<div class="bubble">
<a href="{{ first_tournament_prog_url }}" class="large-button semibold orange topmargin5">Voir la programmation de l'événement</a>
{% if tournaments.first.information %}
<hr/>
<p>
<div class="semibold">Infos</div>
<div class="tournament-info">
{{ tournaments.first.information|linebreaksbr|urlize }}
</div>
</p>
{% endif %}
</div>
</div>
{% endif %}
</div>
{% endblock %}