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

Open in your IDE?
  1. <div id="roundFixed" class="tourCue">
  2.     <div id="leftRow" class="left hidden left-row">
  3.         <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
  4.             <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"></path>
  5.         </svg>
  6.     </div>
  7.     <div id="round-selector-container" class="round-selector-container round-selector-transition round-selector-transition-aux">
  8.         {% for name in roundNames|reverse %}
  9.             <div id="rnd{{ loop.index }}" rnd="{{ loop.index }}" data-position="{{ loop.index }}" class="round-selector">{{ name }}</div>
  10.         {% endfor %}
  11.     </div>
  12.     <div id="rightRow" class="right right-row" style="{% if rondas|length == currentRound %}display:none;{% endif %}">
  13.         <svg class="w-6 h-6" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
  14.             <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"></path>
  15.         </svg>
  16.     </div>
  17. </div>