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

15 lines
403 B
Twig

{% extends 'base.html.twig' %}
{% block title %}Nouveau client{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Créer un client</h1>
{{ include('clients/_form.html.twig') }}
<a href="{{ path('app_clients_index') }}">Retour à la liste</a>
{% endblock %}