{% extends 'admin/base.html.twig' %} {% block title %}Zdjęcia - {{ gallery.getName() }}{% endblock %} {% block header %}Zdjęcia - {{ gallery.getName() }}{% endblock %} {% block breadcrumbs %} {% include 'admin/partials/_breadcrumbs.html.twig' with {'items': [ { 'link': path('admin_gallery_index'), 'title': 'Galerie' }, { 'link': path('admin_gallery_edit', {'id': gallery.getId()}), 'title': gallery.getName() }, { 'link': '#', 'title': 'Zdjęcia' }, ]} %} {% endblock %} {% block main %} {{ include('admin/gallery/_menu_top.html.twig', {'gallery': gallery }) }}
Dodaj zdjęcie
{{ include('admin/image/_list.html.twig', {'images': images, 'remove_route': 'admin_gallery_image_remove', 'edit_route': 'admin_gallery_image_edit' }) }}
{% endblock %}