2024-11-21 15:11:11 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
2024-11-28 15:11:54 +01:00
|
|
|
{% block title %}Modifier Commande{% endblock %}
|
2024-11-21 15:11:11 +01:00
|
|
|
|
|
|
|
{% block body %}
|
2024-11-28 15:11:54 +01:00
|
|
|
<h1>Modifier Commande</h1>
|
2024-11-21 15:11:11 +01:00
|
|
|
|
2024-11-28 15:11:54 +01:00
|
|
|
{{ include('commandes/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
|
2024-11-21 15:11:11 +01:00
|
|
|
|
2024-11-28 15:11:54 +01:00
|
|
|
<a href="{{ path('app_commandes_index') }}">revenir à la liste</a>
|
2024-11-21 15:11:11 +01:00
|
|
|
|
2024-11-28 14:56:56 +01:00
|
|
|
|
2024-11-21 15:11:11 +01:00
|
|
|
{% endblock %}
|