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