{% extends 'base.html.twig' %} {% block title %}Choisir mon buteur — {{ selected_country.nom }} | LPF 2026{% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block body %}
Retour au choix du buteur

Choisir sur le terrain

{% if competition_started|default(false) %} Consultation de l'effectif uniquement — le choix du buteur est verrouillé depuis le début de la compétition. {% else %} Sélectionnez un pays, puis cliquez sur un joueur pour le définir comme buteur. {% endif %} {% if buteur_pick.current_name %} Votre buteur actuel : {{ buteur_pick.current_name }}. {% endif %}

{% if countries_with_squad is empty %}

Aucun effectif synchronisé pour le moment.

{% else %}
{% include 'components/_country_flag_img.html.twig' with { country: selected_country } only %}

{{ selected_country.nom }}

{% if selected_country.groupe %} Groupe {{ selected_country.groupe }} {% endif %}
{% include 'competition/_country_squad_layout.html.twig' with { country: selected_country, squad: squad, buteur_pick: buteur_pick, buteur_pick_return: 'account', competition_started: competition_started|default(false), } only %} {% endif %}
{% endblock %}