{% extends 'base.html.twig' %} {% block title %}Villes{% endblock %} {% block body %} Les Villes {{ form_start(formCitySearch) }} {{ form_row(formCitySearch.name) }} {{ form_end(formCitySearch) }} Id Nom Code Postal Actions {% for city in cityList %} {{ city.id }} {{ city.name }} {{ city.zipCode }} {% if is_granted("ROLE_ADMIN") %} Modifier {% endif %} {% else %} Pas de données {% endfor %} {% if is_granted("ROLE_ADMIN") %} Créer une nouvelle ville {% endif %} {% endblock %}