FestinHegre/templates/statut_commandes/new.html.twig

15 lines
430 B
Twig
Raw Normal View History

{% extends 'base.html.twig' %}
{% block title %}New StatutCommandes{% endblock %}
2024-11-21 16:18:02 +01:00
{% block stylesheets %}
2024-11-21 17:03:32 +01:00
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
2024-11-21 16:18:02 +01:00
{% 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 %}