FestinHegre/templates/statut_tables/new.html.twig
leroyv 77a1af3912 Add Edit.css for templates
Fix Lien templates avec le nouveau dossier
2024-11-21 17:48:16 +01:00

15 lines
419 B
Twig

{% 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 %}