{% extends "Joueur/joueur.html.twig" %} {% block title %}{{ parent() }} - Palmarès {{ app.request.attributes.get('player_name')|replace({'-':' '}) }}{% endblock %} {% block joueur %}
| Saison | Compétitions remportés | {% for titre in palmares %} {% if titre.place=="Winner" %} {% if loop.index0==0 or palmares[loop.index0-1].season!=titre.season or titre.place!=palmares[loop.index0-1].place %}
|---|---|
| {{ titre.season }} | {{ titre.league }} {% else %} , {{ titre.league }} {% endif %} {% endif %} {% endfor %} |