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

Définir les langues de {{ user.username }}

{{ form_start(form, {'method': 'post', 'action': path('langue_langue_user', {'id': id}) }) }} {% if form.langue_parle is defined %} {{ form_label(form.langue_parle, 'Langues parlées ') }} {{ form_widget(form.langue_parle, {'attr': {'class': 'ui fluid search dropdown'}}) }}
{% endif %} {% if form.langue_cible is defined %} {{ form_label(form.langue_cible, 'Langues cibles ') }} {{ form_widget(form.langue_cible, {'attr': {'class': 'ui fluid search dropdown'}}) }}
{% endif %} {% if form.langue_enseigne is defined %} {{ form_label(form.langue_enseigne, 'Langues enseignées ') }} {{ form_widget(form.langue_enseigne, {'attr': {'class': 'ui fluid search dropdown'}}) }}
{% endif %}
{{ form_end(form) }}
{% endblock %}