{% extends "layout.twig" %} {% block title %}Tableau de bord – Catégories{% endblock %} {% block content %}

Gestion des catégories

{% include 'partials/_admin_nav.twig' %} {% if error %}
{{ error }}
{% endif %} {% if success %}
{{ success }}
{% endif %}

Ajouter une catégorie

Le slug URL est généré automatiquement depuis le nom.

{% if categories is not empty %} {% for category in categories %} {% endfor %}
Nom Slug Actions
{{ category.name }} {{ category.slug }}
{% include 'partials/_pagination.twig' with { pagination: pagination } %} {% else %}

Aucune catégorie créée.

{% endif %} {% endblock %}