{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Ajout d'un type d'exercice{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %}

Créer un type d'exercice

{{ form_start(form, {'method': 'post', 'action': path('courses_typecomposant_create' )}) }} {{ form_label(form.libelle, 'Libellé ') }} {{ form_widget(form.libelle, {'attr': {'class': 'form-control'}}) }}
{{ form_errors(form.libelle) }}
{{ form_end(form) }}
{% endblock %}