{% extends 'admin.base.html.twig' %} {% block title %}Categories{% endblock %} {% block page_title %} Liste des catégories {% endblock %} {% block breadcrumb %} {% include '_breadcrumb.html.twig' with { breadcrumbs: [ { label: 'Catégories', path: path('app_category_index') } ] } %}{% endblock %} {% block content %}

Catégories

Nouvelle catégorie
{% for category in categories %} {# Compte les galeries #} {% else %} {% endfor %}
ID Titre Slug Description Nbr Galeries Actions
{{ category.id }} {{ category.title }} {{ category.slug }} {{ category.description|slice(0, 100) }}{% if category.description|length > 100 %}…{% endif %} {{ category.galleries|length }}
Aucune catégorie trouvée.
{% endblock %}