{% extends 'admin.base.html.twig' %} {% block title %}Détail de la gallery{% endblock %} {% block page_title %}Gallery « {{ gallery.title }} »{% endblock %} {% block breadcrumb %} {% include '_breadcrumb.html.twig' with { breadcrumbs: [ { label: 'Galleries', path: path('app_gallery_index') }, { label: gallery.title } ] } %} {% endblock %} {% block content %}

Informations sur la gallery

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