bayard
f0aab96d67
# Conflicts: # templates/clients/edit.html.twig # templates/clients/index.html.twig # templates/commandes/edit.html.twig # templates/details_commande/index.html.twig # templates/plats/index.html.twig # templates/reductions/index.html.twig # templates/reservations/index.html.twig
14 lines
304 B
Twig
14 lines
304 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') }}">revenir à la liste</a>
|
|
|
|
|
|
{% endblock %}
|