FestinHegre/templates/clients/new.html.twig
leroyv 77a1af3912 Add Edit.css for templates
Fix Lien templates avec le nouveau dossier
2024-11-21 17:48:16 +01:00

15 lines
396 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New Clients{% endblock %}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
{% endblock %}
{% block body %}
<h1>Create new Clients</h1>
{{ include('clients/_form.html.twig') }}
<a href="{{ path('app_clients_index') }}">back to list</a>
{% endblock %}