{% extends 'SEAdminBundle:layout:layout.html.twig' %} {% block javascripts %} {% endblock %} {% block body_left %} {# Le contenu de la news #}
Modifier {{ news.title }}
{% include 'SEAdminBundle:news:content-form.html.twig' %}
{# Les images pour le slide de la news ... #}
Illustrer l'article
{% if news.image|length > 0 %}
    {% for image in news.images %}
  • {% endfor %}
{% endif %}
{{ form_widget(formImage.image) }}
{{ form_errors(formImage.image) }}
{{ form_errors(form) }}
{{ form_rest(formImage) }}
{% endblock %}