FestinHegre/templates/commandes/new.html.twig
bayard ddff9b1677 traduction en français
fix du css
Manque boutton supprimer affichage
2024-12-05 15:12:46 +01:00

16 lines
414 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Nouvelle commande{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Créer une commande</h1>
{{ include('commandes/_form.html.twig') }}
<a href="{{ path('app_commandes_index') }}">Retour à la liste</a>
{% endblock %}