14 lines
311 B
Twig
14 lines
311 B
Twig
{% 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 %}
|