{# live_matches: list, pronostics_by_match_id, partner_pronostics_by_match_id, goals_by_match_id, team_match_points_by_match_id, joker_usage_by_match_id, team_favorite_highlight, now, compact: bool|false, multiplex_preview, multiplex_preview_kickoff, multiplex_panels_by_match_id, espion_intel_by_match_id, show_joker_ui, prono_access_blocked #} {% set compact = compact|default(false) %} {% set multiplex_preview = multiplex_preview|default(false) %} {% set multiplex_preview_kickoff = multiplex_preview_kickoff|default(null) %} {% set team_favorite_highlight = team_favorite_highlight|default(null) %} {% set joker_usage_by_match_id = joker_usage_by_match_id|default({}) %} {% set espion_intel_by_match_id = espion_intel_by_match_id|default({}) %} {% set goals_by_match_id = goals_by_match_id|default({}) %} {% set team_match_points_by_match_id = team_match_points_by_match_id|default({}) %} {% set multiplex_panels_by_match_id = multiplex_panels_by_match_id|default({}) %}
{% for match in live_matches %} {% set tab_score_home = match.scoreDomicile is not null ? match.scoreDomicile : 0 %} {% set tab_score_away = match.scoreExterieur is not null ? match.scoreExterieur : 0 %} {% endfor %}
{% for match in live_matches %} {% set is_favorite_country_match = match_is_team_favorite_highlight(match, team_favorite_highlight) %} {% set panel = multiplex_panels_by_match_id[match.id] ?? {} %} {% include 'competition/_match_multiplex_panel.html.twig' with { match: match, pronostic: pronostics_by_match_id[match.id] ?? null, partner_pronostics: partner_pronostics_by_match_id[match.id] ?? [], now: now, match_goals: goals_by_match_id[match.id] ?? [], team_match_points: team_match_points_by_match_id[match.id] ?? null, match_joker: joker_usage_by_match_id[match.id] ?? null, is_favorite_country_match: is_favorite_country_match, panel_index: loop.index0, multiplex_preview: multiplex_preview|default(false), multiplex_preview_kickoff: multiplex_preview_kickoff|default(null), multiplex_panel: panel, espion_intel: espion_intel_by_match_id[match.id] ?? null, show_joker_ui: show_joker_ui|default(false), prono_access_blocked: prono_access_blocked|default(false), } only %} {% endfor %}