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.
40 lines
1.2 KiB
40 lines
1.2 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>
|
|
<hr/>
|
|
<p>
|
|
<div class="semibold">Infos</div>
|
|
<div class="tournament-info">
|
|
{{ tournaments.count }} tournois
|
|
</div>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
|
|