{% extends templateTwigParent %} {% block titreContenu %} {{ include ('./stage/titre.html.twig') }}{% endblock %} {% block contenu%} {{ include ('./stage/menu.html.twig') }}

Bilan de stage rédigé par {% if stage.enseignant.id is defined %}{{stage.enseignant.prenom}} {{stage.enseignant.nom}} {% else %} : professeur référent à définir {% endif %}

{{ form_start(form)}}
{{ form_row(form.attitude, {'attr' : {'class' : 'form-control'}}) }}
{{ form_row(form.positif, {'attr' : {'class' : 'form-control'}}) }}
{{ form_row(form.ameliorer, {'attr' : {'class' : 'form-control'}}) }}
{{ form_row(form.divers, {'attr' : {'class' : 'form-control'}}) }}
{% if is_granted('ROLE_ENSEIGNANT') %}
{{ form_row(form.cancel, {'attr' : {'class' : 'btn btn-secondary'}}) }}
{{ form_row(form.submit, {'attr' : {'class' : 'btn btn-primary'}}) }}
{% endif %} {{ form_end(form) }}
{% endblock %}