FestinHegre/templates/clients/edit.html.twig
bayard ddff9b1677 traduction en français
fix du css
Manque boutton supprimer affichage
2024-12-05 15:12:46 +01:00

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 %}