FestinHegre/templates/details_commande/new.html.twig

16 lines
431 B
Twig
Raw Normal View History

2024-11-21 15:11:11 +01:00
{% extends 'base.html.twig' %}
{% block title %}New DetailsCommande{% 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 %}
2024-11-21 15:11:11 +01:00
{% block body %}
2024-11-21 16:18:02 +01:00
2024-11-21 15:11:11 +01:00
<h1>Create new DetailsCommande</h1>
{{ include('details_commande/_form.html.twig') }}
<a href="{{ path('app_details_commande_index') }}">back to list</a>
{% endblock %}