{% extends 'admin.base.html.twig' %} {% block title %}Détail de la catégorie{% endblock %} {% block page_title %}Catégorie « {{ category.title }} »{% endblock %} {% block breadcrumb %} {% include '_breadcrumb.html.twig' with { breadcrumbs: [ { label: 'Catégories', path: path('app_category_index') }, { label: category.title } ] } %} {% endblock %} {% block content %}

Informations sur la catégorie

ID {{ category.id }}
Titre {{ category.title }}
Description {{ category.description }}
Slug {{ category.slug }}
Retour à la liste Modifier {{ include('admin/category/_delete_form.html.twig') }}
{% endblock %}