{% extends 'base.html.twig' %} {% block title %}Nouveau manuel {% endblock %} {% block body %}
{% include 'utils/file.ariane.html.twig' %}

Nouveau manuel


{{ form_start(form) }}
{{ form_errors(form) }}
Manuel
{{ form_row(form.document) }}
La taille maximale autorisée est {{maxSize}}
les types de documents autorisés sont
    {% for extension in mimeTypes %}
  • {{extension}}
  • {% endfor %}

Annuler
{{ form_end(form) }}
{% endblock %}