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