HegreEtConfort/templates/user/edit.html.twig

14 lines
311 B
Twig
Raw Normal View History

2024-12-20 10:07:22 +01:00
{% extends 'base.html.twig' %}
{% block title %}Edit User{% endblock %}
{% block body %}
<h1>Edit User</h1>
{{ include('user/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_user_index') }}">back to list</a>
{{ include('user/_delete_form.html.twig') }}
{% endblock %}