templates/Front/competition/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% from 'Front/macros.html.twig' import blockCompetition %}
  3. {% block title %}Africa TKD Referee : Competitions{% endblock %}
  4. {% block body %}
  5.     <div class="d-flex titlefront">
  6.         <div class="vr ps-2 me-3"></div>
  7.         <h1>Competitions</h1>
  8.     </div>
  9.     <div class="row">
  10.         {% for competition in competitions %}
  11.             <div class="col-lg-6">
  12.                 {{ blockCompetition(competition) }}
  13.             </div>
  14.         {% else %}
  15.             <hr>
  16.             <h3 class="text-muted">no records found</h3>
  17.         {% endfor %}
  18.     </div>
  19. {% endblock %}