{% extends 'base.html.twig' %} {% block title %}Matchs | LPF 2026{% endblock %} {% block body %} {#

Matchs

Pronostique avant le coup d'envoi et consulte les resultats apres match.

Calendrier dynamique

Les pronostics restent modifiables tant que le match n'a pas commence.

Faire mes pronostics
#} {% if matchday_nav is not empty %} {% endif %}
{% if matches is empty %}

Aucun match disponible pour le moment.

{% else %} {% set default_prono_cutoff = default_prono_cutoff_match() %} {% set default_prono_cutoff_day = default_prono_cutoff and default_prono_cutoff.dateHeure ? default_prono_cutoff.dateHeure|date('Y-m-d') : null %} {% set current_day = null %} {% for match in matches %} {% set match_day = match.dateHeure ? match.dateHeure|date('Y-m-d') : 'date-inconnue' %} {% if match_day != current_day %} {% if not loop.first %} {% endif %} {% set current_day = match_day %} {% endif %} {% endfor %} {% endif %}
{% if app.user %} {% include 'competition/_joker_modal.html.twig' %} {% include 'competition/_match_espion_intel_dialog.html.twig' %} {% endif %} {% endblock %} {% block javascripts %} {{ parent() }} {% if app.user %} {% endif %} {% endblock %}