FestinHegre/templates/clients/new.html.twig

15 lines
396 B
Twig
Raw Permalink Normal View History

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