FestinHegre/templates/clients/edit.html.twig

14 lines
346 B
Twig
Raw Normal View History

2024-11-21 15:11:11 +01:00
{% extends 'base.html.twig' %}
{% block title %}Modifier Client{% endblock %}
2024-11-21 15:11:11 +01:00
{% block body %}
<h1>Modifier Client</h1>
2024-11-21 15:11:11 +01:00
{{ include('clients/_form.html.twig', {'button_label': 'Mettre à jour'}) }}
2024-11-21 15:11:11 +01:00
<a href="{{ path('app_clients_index') }}">Retour à la liste</a>
2024-11-21 15:11:11 +01:00
{{ include('clients/_delete_form.html.twig') }}
2024-11-21 15:11:11 +01:00
{% endblock %}