{% extends 'base.html.twig' %} {% block body %} {{ form_start(form) }}

Création ILLUSTRATIONS EN MASSE

{{ form_widget(form.submit) }} {% if by=="admin" %} Annuler {% elseif by=="update" %} Annuler {% elseif by=="profil" %} Annuler {% elseif by=="illustration" %} Annuler {% else %} Annuler {% endif %}

{% if app.session.flashbag.has('error') %}
Erreur
{% for flashMessage in app.session.flashbag.get('error') %} {{ flashMessage }}
{% endfor %}
{% endif %} {% if app.session.flashbag.has('notice') %}
Information
{% for flashMessage in app.session.flashbag.get('notice') %} {{ flashMessage }}
{% endfor %}
{% endif %}
Informations
{{ form_row(form.category) }}
{{ form_end(form) }} {% endblock %} {% block localjavascript %} $(document).ready(function() { $("#illustration_category").focus(); }); {% endblock %}