{% extends "DI/base.html.twig" %} {% set aPageAction = { reset: { rank: 2, type: 'reset', label: 'Reset', form: 'object_form' }, submit: { rank: 3, type: 'submit', label: 'Save', form: 'object_form', primary: true } } %} {% if id != 0 %} {% set aPageAction = aPageAction|merge({ previous: { rank: 0, type: 'link', disabled: id <= 1, href: path('object_edit', {'class': class, 'id': id - 1}), icon: 'fa-solid fa-arrow-left' }, next: { rank: 1, type: 'link', href: path('object_edit', {'class': class, 'id': id + 1}), icon: 'fa-solid fa-arrow-right' } }) %} {% endif %} {% block title %} Object Edition {% endblock %} {% block head %} {% endblock %} {% block toasts %} {# database information toast #}