{% extends 'base.html.twig' %}{% from 'Front/macros.html.twig' import blockCompetition %}{% block title %}Africa TKD Referee : Competitions{% endblock %}{% block body %} <div class="d-flex titlefront"> <div class="vr ps-2 me-3"></div> <h1>Competitions</h1> </div> <div class="row"> {% for competition in competitions %} <div class="col-lg-6"> {{ blockCompetition(competition) }} </div> {% else %} <hr> <h3 class="text-muted">no records found</h3> {% endfor %} </div>{% endblock %}