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

12 lines
246 B
Twig

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