22 lines
582 B
Twig
22 lines
582 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Edit Commandes{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/edit.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="page-container">
|
|
<h1 class="page-title">Edit Commandes</h1>
|
|
|
|
{{ include('commandes/_form.html.twig', {'button_label': 'Update'}) }}
|
|
|
|
<div class="actions">
|
|
<a href="{{ path('app_commandes_index') }}">Back to list</a>
|
|
</div>
|
|
|
|
{{ include('commandes/_delete_form.html.twig') }}
|
|
</div>
|
|
{% endblock %}
|