templates/frontend/MatchPlay/bracket-mobile/bracket-match-mobile.html.twig line 1

Open in your IDE?
  1. {% set teeTime = '' %}
  2. {% if match.hour is not null %}
  3.     {% set teeTime = teeTime ~ match.hour %}
  4. {% endif %}
  5. {% if match.tee is not null %}
  6.     {% set teeTime = teeTime ~ "🏳️" ~ match.tee %}
  7. {% endif %}
  8. {% set teeDate = '' %}
  9. {% if match.date is not null %}
  10.     {% set teeDate = match.date %}
  11. {% endif %}
  12. {% if data.rounds|length == round.order and round.matches|length > 1 %}
  13.     {% if match.order == 1 %}
  14.         <h4 id="title-final">Final</h4>
  15.     {% else %}
  16.         <h4 id="title-tercercuarto">Tercer y cuarto puesto</h4>
  17.     {% endif %}
  18. {% endif %}
  19. {% set totalSides = match.sides|length %}
  20. {% if totalSides == 2 %}
  21.     {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-mobile.html.twig' with {'sideOrder': 1} %}
  22.     {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-mobile.html.twig' with {'sideOrder': 2} %}
  23. {% elseif totalSides == 1 %}
  24.     {% set sideOrder = match.sides|first.order %}
  25.     {% if sideOrder == 1 %}
  26.         {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-mobile.html.twig' with {'sideOrder': 1} %}
  27.         {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-tbd-mobile.html.twig' with {'sideOrder': 2} %}
  28.     {% else %}
  29.         {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-tbd-mobile.html.twig' with {'sideOrder': 1} %}
  30.         {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-mobile.html.twig' with {'sideOrder': 2} %}
  31.     {% endif %}
  32. {% else %}
  33.     {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-tbd-mobile.html.twig' with {'sideOrder': 1} %}
  34.     {% include 'frontend/MatchPlay/bracket-mobile/bracket-side-tbd-mobile.html.twig' with {'sideOrder': 2} %}
  35. {% endif %}