hegresphere/templates/user_app/edit.html.twig
2024-11-21 17:04:56 +01:00

14 lines
329 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Edit UserApp{% endblock %}
{% block body %}
<h1>Edit UserApp</h1>
{{ include('user_app/_form.html.twig', {'button_label': 'Update'}) }}
<a href="{{ path('app_user_app_index') }}">back to list</a>
{{ include('user_app/_delete_form.html.twig') }}
{% endblock %}