{% extends 'tournaments/base.html' %} {% block head_title %}Équipes du {{ tournament.display_name }}{% endblock %} {% block first_title %}{{ tournament.event.display_name }}{% endblock %} {% block second_title %}{{ tournament.display_name }}{% endblock %} {% block content %}

{{ team.formatted_team_names }}

{% for player in team.playerregistration_set.all %} {% include 'tournaments/player_row.html' with player=player %} {% endfor %} {% include 'tournaments/team_stats.html' %}
{% with upcoming_matches=team.get_upcoming_matches %} {% if upcoming_matches %}

Prochains matchs

{% for match in upcoming_matches %} {% include 'tournaments/match_cell.html' %} {% endfor %}
{% endif %} {% endwith %} {% with completed_matches=team.get_completed_matches %} {% if completed_matches %}

Matchs terminés

{% for match in completed_matches %} {% include 'tournaments/match_cell.html' %} {% endfor %}
{% endif %} {% endwith %}
{% endblock %}