Avant le coup d’envoi
{% if pronostic %}
Mon prono
{{ pronostic.scoreDomicile }} - {{ pronostic.scoreExterieur }}
{% else %}
{% if match_uses_default_zero_prono(match) %}
Prono par défaut 0-0 (modifiable avant le CO).
{% else %}
Aucun prono enregistré (saisie obligatoire avant le CO).
{% endif %}
{% endif %}
{% if partner_pronostics is not empty %}
{% for pp in partner_pronostics %}
{% set partner = pp.joueur %}
-
{% if partner.avatar %}
{% else %}
{{ partner.email|first|upper }}
{% endif %}
{{ partner.email|split('@')|first }}
{{ pp.scoreDomicile }} - {{ pp.scoreExterieur }}
{% endfor %}
{% endif %}
{% if match_joker %}
Joker : {{ match_joker.name|default(match_joker.code) }}
{% endif %}
Résultat LPF
{% if is_upcoming %}
Points et classement simulé disponibles après le coup d’envoi.
{% else %}
{% if is_finished and team_result_breakdown %}
{% include 'competition/_match_hub_result_breakdown.html.twig' with {
team_result_breakdown: team_result_breakdown,
} only %}
{% else %}
{% if team_match_points is not null %}
Points équipe
{{ team_match_points > 0 ? '+' : '' }}{{ team_match_points }} pts
{% endif %}
{% if live_view and live_view.viewerPronostic|default(null) %}
Mes points match
{{ live_view.viewerPronostic.points|number_format(0, ',', ' ') }} pts
{% endif %}
{% if is_live %}
Utilisez le simulateur ci-dessus pour projeter un autre score.
{% endif %}
{% endif %}
{% endif %}
{% if live_view and (is_live or is_finished) %}
Pronostics par équipe
{% include 'competition/_match_live_teams.html.twig' with {
teams: live_view.teams,
cotes_visible: match_cotes_visible(match),
viewer_pronostic: live_view.viewerPronostic|default(null),
show_team_prono_detail: false,
} only %}
{% if live_view.matchJokers|default([]) is not empty %}
{% include 'competition/_match_live_jokers_section.html.twig' with {
match_jokers: live_view.matchJokers,
} only %}
{% endif %}
{% if match.isKdoMatch and live_view.kdoOutlook %}
{% include 'competition/_match_live_kdo.html.twig' with {
kdo_outlook: live_view.kdoOutlook,
kdo_final: is_finished,
} only %}
{% endif %}
{% endif %}
{% include 'competition/_match_hub_v2_goals_timeline.html.twig' with {
goals: match_goals,
match: match,
} only %}
{% if match_goals is not empty %}
{% include 'competition/_match_goals.html.twig' with { goals: match_goals } only %}
{% endif %}
{% if live_view and live_view.matchButeurs|default([]) is not empty %}
Buteurs des pays en lice
{% include 'competition/_match_live_match_buteurs.html.twig' with { match_buteurs: live_view.matchButeurs } only %}
{% endif %}