FestinHegre/templates/commandes/edit.html.twig
bayard f0aab96d67 Merge remote-tracking branch 'origin/feature/Controller' into feature/Controller
# 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
2024-11-28 15:11:54 +01:00

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 %}