hegresphere/templates/intern/new.html.twig
2024-12-05 16:55:24 +01:00

12 lines
246 B
Twig

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