{% extends "DI/base.html.twig" %} {# page actions #} {% set aPageAction = { previous: { rank: 0, type: 'link', disabled: id <= 1, href: path('object_view', {'class': class, 'id': id - 1}), icon: 'fa-solid fa-arrow-left' }, next: { rank: 1, type: 'link', href: path('object_view', {'class': class, 'id': id + 1}), icon: 'fa-solid fa-arrow-right' }, edit: { rank: 2, type: 'link', href: path('object_edit', {'class' : class, 'id': object.id}), icon: 'fa-solid fa-pen-to-square', label: 'Edit Object', primary: true } } %} {% block title %} Object Edition {% endblock %} {% block body %}