16 lines
485 B
Twig
16 lines
485 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Créer un nouveau StatutTables{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
|
|
|
|
{% endblock %}
|
|
{% block body %}
|
|
<h1>Créer un nouveau StatutTables</h1>
|
|
|
|
{{ include('statut_tables/_form.html.twig') }}
|
|
<div class="actions">
|
|
<a href="{{ path('app_statut_tables_index') }}">Retour à la liste</a>
|
|
</div>
|
|
{% endblock %}
|