Files
cabinet/templates/department/edit.html.twig
T
2026-05-28 12:09:28 +03:00

12 lines
287 B
Twig

{% extends 'admin_base.html.twig' %}
{% block title %}Edit Department{% endblock %}
{% block body %}
<h1>Edit Department</h1>
{{ include('department/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('department_index') }}">back to list</a>
{% endblock %}