14 lines
303 B
Twig
14 lines
303 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Modifier Commande{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Modifier Commande</h1>
|
|
|
|
{{ include('commandes/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
|
|
|
|
<a href="{{ path('app_commandes_index') }}">Retour à la liste</a>
|
|
|
|
|
|
{% endblock %}
|