FestinHegre/templates/reductions/new.html.twig

15 lines
414 B
Twig
Raw Normal View History

2024-11-21 15:11:11 +01:00
{% extends 'base.html.twig' %}
{% block title %}New Reductions{% endblock %}
2024-11-21 16:18:02 +01:00
{% block stylesheets %}
2024-11-21 17:03:32 +01:00
<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:18:02 +01:00
{% endblock %}
2024-11-21 15:11:11 +01:00
{% block body %}
2024-11-21 16:18:02 +01:00
<h1>Créer une Reductions</h1>
2024-11-21 15:11:11 +01:00
{{ include('reductions/_form.html.twig') }}
2024-11-21 16:18:02 +01:00
<a href="{{ path('app_reductions_index') }}">revenir a la liste</a>
2024-11-21 15:11:11 +01:00
{% endblock %}