{% include 'components/_country_flag_img.html.twig' with {
country: match.paysDomicile,
img_classes: 'match-live-score-flag',
placeholder_class: 'match-live-score-flag match-flag-placeholder',
} only %}
{{ country_short_label(match.paysDomicile) }}
{{ live_view.scoreDomicile }}
-
{{ live_view.scoreExterieur }}
{% if show_simulator and match.statut == 'LIVE' %}
{{ match_live_clock_label(match) }}
{% elseif not show_simulator %}
Terminé
{% endif %}
{% if show_simulator and live_view.viewerPronostic|default(null) %}
{% include 'competition/_match_viewer_pronostic.html.twig' with { viewer_pronostic: live_view.viewerPronostic } only %}
{% endif %}
{% include 'components/_country_flag_img.html.twig' with {
country: match.paysExterieur,
img_classes: 'match-live-score-flag',
placeholder_class: 'match-live-score-flag match-flag-placeholder',
} only %}
{{ country_short_label(match.paysExterieur) }}
{% include 'competition/_match_goals.html.twig' with { goals: match_goals } only %}
{% if match_cotes_visible(match) %}
{% include 'competition/_match_live_cotes.html.twig' with { cotes: live_view.cotes } only %}
{% endif %}