15 lines
430 B
Twig
15 lines
430 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New StatutCommandes{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
|
|
|
|
{% endblock %}
|
|
{% block body %}
|
|
<h1>Create new StatutCommandes</h1>
|
|
|
|
{{ include('statut_commandes/_form.html.twig') }}
|
|
|
|
<a href="{{ path('app_statut_commandes_index') }}">back to list</a>
|
|
{% endblock %}
|