{% extends 'Admin/admin.html.twig' %} {% block title %}Gestion des catégories d'objets{% endblock %} {% block body %}
Créer une catégorie
{% for label, messages in app.flashes %} {% for message in messages %}
{{ message }}
{% endfor %} {% endfor %}
{% if categories is not empty %}
Catégories existantes
{% for category in categories %} {% endfor %}
ID Nom Date de création
{{ category.id }} {{ category.name }} {{ category.created_at|date('d/m/Y H:i') }}
{% endif %} {% endblock %}