{% extends 'base.html.twig' %} {% block title %}Profil de {{ joueur.prenom }} {{ joueur.nom }} - Arras 6{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %}
Simple
{{ victoiresS }}V / {{ defaitesS }}D
Double
{{ victoiresD }}V / {{ defaitesD }}D
Mixte
{{ victoiresM }}V / {{ defaitesM }}D
| Date | Format | Adversaire | Score | Résultat |
|---|---|---|---|---|
| {{ match.rencontre and match.rencontre.dateRencontre ? match.rencontre.dateRencontre|date('d/m') : '-' }} | {% if match.typeMatch|lower == 'simple' %} {% elseif match.typeMatch|lower == 'double' %} {% else %}{% endif %} {{ match.typeMatch|capitalize }} |
{{ match.nomAdversaire }}
{{ match.opponentTeam }}
|
{{ match.score|replace({' ': ' '}) }} | {% if match.resultat|lower == 'victoire' %} V {% else %} D {% endif %} |
|
Aucun match enregistré. |
||||