2024-11-21 15:11:11 +01:00
|
|
|
{% extends 'base.html.twig' %}
|
|
|
|
|
|
|
|
{% block title %}Edit Commandes{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>Edit Commandes</h1>
|
|
|
|
|
|
|
|
{{ include('commandes/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
|
|
|
|
<a href="{{ path('app_commandes_index') }}">back to list</a>
|
|
|
|
|
2024-11-28 14:56:56 +01:00
|
|
|
|
2024-11-21 15:11:11 +01:00
|
|
|
{% endblock %}
|