14 lines
346 B
Twig
14 lines
346 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Modifier Client{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Modifier Client</h1>
|
|
|
|
{{ include('clients/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
|
|
|
|
<a href="{{ path('app_clients_index') }}">Retour à la liste</a>
|
|
|
|
{{ include('clients/_delete_form.html.twig') }}
|
|
{% endblock %}
|