{% extends 'page.html.twig' %}
{% block title %}Critères - Nouveau{% endblock %}
{% block style %}
{% endblock %}
{% block page %}
{% set actions = {1: {'libelle': 'Retour', 'lien': path('criteres_index') }} %}
{% set liens = {'Accueil': path('home_index'), 'Critères': path('criteres_index'), 'Création': '#'} %}
{% include 'breadcrumb.twig' with {'liens': liens, 'actions': actions} %}
Nouveau critère
{{ include('criteres/_form.html.twig') }}
{% endblock %}