Documentation
{% if not isEditing %}
{% else %}
{% endif %}
{% include "partials/_flash.html.twig" %}
{% if isEditing %}
{{ form_start(form, {
attr: {
'data-model': 'norender|*',
}
}) }}
{{ form_widget(form.documentary) }}
{{ form_end(form) }}
{% else %}
{% if fellow.documentary %}
{% for part in fellow.documentary|split('-') %}
{% if loop.index > 1 %}
-{{ part }}
{% else %}
{{ part }}
{% endif %}
{% endfor %}
{% else %}
Aucune documentation ne fait mention de l'individu
{% endif %}
{% endif %}