14 lines
336 B
Twig
14 lines
336 B
Twig
{% 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>
|
|
|
|
{{ include('commandes/_delete_form.html.twig') }}
|
|
{% endblock %}
|