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

12 lines
252 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New UserApp{% endblock %}
{% block body %}
<h1>Create new UserApp</h1>
{{ include('user_app/_form.html.twig') }}
<a href="{{ path('app_user_app_index') }}">back to list</a>
{% endblock %}