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