{% extends 'base.html.twig' %} {% block title %} Liste des catégories {% endblock %} {% block body %}
{% include "_partials/_adminnav.html.twig" %}

Liste des catégories

{% for categorie in categories %} {% endfor %}
Nom Parent Action
{{ categorie.name }} {% if categorie.parent is not null %} {{ categorie.parent.name }} {% endif %} {{ categorie.categoryOrder }} Modifier
{% endblock %}