Files
Projet_Symfony_Quentin/templates/projet/new.html.twig

12 lines
246 B
Twig
Raw Normal View History

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