{% extends 'base.html.twig' %} {% block title %}{{parent()}}: Adaptabilité d'activité{% endblock %} {% block body %} {% include 'breadcrumb.html.twig' %}

Adaptabilité de l'activité n°{{ idActivite }}

{{ form_start(form, {'method': 'post', 'action': path('courses_activite_adaptabilite', { 'id': idActivite }) }) }} {{ form_label(form.notePlancher, 'Note plancher') }} {{ form_widget(form.notePlancher, {'attr': {'class': 'form-control', 'placeholder':'Déterminer la note plancher', 'min':'0', 'value':notePlancher }}) }}
{{ form_errors(form.notePlancher) }} {{ form_label(form.activiteLiee, 'Activité liée') }}

{% if activite_liee != '' %}Sélectionnée : {{ activite_liee.id }} - {{ activite_liee.libelle }}{% endif %}

{% if activite_liee != '' %} {{ form_widget(form.activiteLiee, {'attr': {'class': '', 'hidden': 'hidden', 'min': '0', 'value':activite_liee.id }}) }} {% else %} {{ form_widget(form.activiteLiee, {'attr': {'class': '', 'hidden': 'hidden', 'min': '0' }}) }} {% endif %} {{ form_errors(form.activiteLiee) }}
{{ form_end(form) }}
{% endblock %} {% block body_before_end %} {{ parent() }} {{ tinymce_init() }} {% include 'generic_popin.html.twig' with { 'contenu': '__CONTENU__', 'titre': '__TITRE__', 'show_validate_popin' : true, 'show_cancel_popin' : true, 'wide': true } only %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock javascripts %}