{% extends 'base.html.twig' %} {% block title %}Historique des Matchs - Arras 6{% endblock %} {% block body %}
| Type | Joueur(s) BCA | Adversaire | Score par set | Bilan |
|---|---|---|---|---|
| {% if match.typeMatch|lower == 'simple' %} {% elseif match.typeMatch|lower == 'double' %} {% elseif match.typeMatch|lower == 'mixte' %} {% endif %} {{ match.typeMatch|capitalize }} |
{{ match.joueur.prenom }} {{ match.joueur.nom|upper }}
{% if match.binome %}
& {{ match.binome }}
{% endif %}
|
{{ match.nomAdversaire|default('À définir') }}
|
{{ match.score|replace({' ': ' '}) }} | {% if match.resultat|lower == 'victoire' %} V {% else %} D {% endif %} |