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.
28 lines
1005 B
28 lines
1005 B
{% extends 'tournaments/base.html' %}
|
|
|
|
{% block head_title %}Matchs du {{ tournament.display_name }}{% endblock %}
|
|
{% block first_title %}{{ tournament.event.display_name }}{% endblock %}
|
|
{% block second_title %}{{ tournament.display_name }}{% endblock %}
|
|
{% block title_link %}{% url 'tournament' tournament.id %}{% endblock %}
|
|
{% block meta_desc %}Résultats officiels des matchs du {{ tournament.display_name }}, tours par tours. Retrouvez tous les matchs des équipes présentes.{% endblock %}
|
|
{% block meta_keywords %}matchs,équipes,scores, résultats{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% include 'tournaments/navigation_tournament.html' %}
|
|
|
|
{% if live_matches %}
|
|
|
|
<h1 class="club padding10 topmargin20">En cours</h1>
|
|
|
|
<div class="grid-x">
|
|
{% for match in live_matches %}
|
|
{% include 'tournaments/match_cell.html' %}
|
|
{% endfor %}
|
|
</div>
|
|
{% else %}
|
|
<div class="grid-x">
|
|
<h1 class="club padding10 topmargin20">Aucun match en cours actuellement.</h1>
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|