parent
41cda04ba9
commit
6483a0add2
@ -0,0 +1,26 @@ |
||||
{% 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 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 %} |
||||
Loading…
Reference in new issue