FestinHegre/templates/commandes/edit.html.twig

14 lines
303 B
Twig
Raw Permalink Normal View History

2024-11-21 15:11:11 +01:00
{% extends 'base.html.twig' %}
{% block title %}Modifier Commande{% endblock %}
2024-11-21 15:11:11 +01:00
{% block body %}
<h1>Modifier Commande</h1>
2024-11-21 15:11:11 +01:00
{{ include('commandes/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
2024-11-21 15:11:11 +01:00
<a href="{{ path('app_commandes_index') }}">Retour à 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 %}