FestinHegre/templates/statut_tables/new.html.twig

15 lines
419 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}New StatutTables{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/ControllerVues/list.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Create new StatutTables</h1>
{{ include('statut_tables/_form.html.twig') }}
<a href="{{ path('app_statut_tables_index') }}">back to list</a>
{% endblock %}