{% extends 'base.html.twig' %} {% block title %}Gestion des catégories{% endblock %} {% block body %}

Catégories

Retour
{# Formulaire d'ajout #}
Nouvelle catégorie
{# Liste des catégories #}
Catégories existantes {{ categories|length }}
{% for category in categories %}
{{ category.name }}
{{ category.recipes|length }} recette(s) — ordre : {{ category.position }} {% if category.icon %}— {{ category.icon }}{% endif %}
{# Formulaire d'édition inline (collapse) #}
{% else %}
Aucune catégorie pour le moment.
{% endfor %}
{% endblock %} {% block javascripts %} {% endblock %}