hegresphere/templates/intern/new.html.twig

12 lines
246 B
Twig
Raw Normal View History

2024-11-21 17:04:56 +01:00
{% 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 %}