15 lines
414 B
Twig
15 lines
414 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New Reductions{% endblock %}
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('css/ControllerVues/new.css') }}"> <!-- Ajout du fichier CSS -->
|
|
|
|
{% endblock %}
|
|
{% block body %}
|
|
<h1>Créer une Reductions</h1>
|
|
|
|
{{ include('reductions/_form.html.twig') }}
|
|
|
|
<a href="{{ path('app_reductions_index') }}">revenir a la liste</a>
|
|
{% endblock %}
|