{% extends "::layout.html.twig" %} {% block title %}{% trans %}Édition d'un contenu pour l'affichage{% endtrans %} "{{ event.name }}" - {{ parent() }}{% endblock %} {% block content_main %}

Édition d'un contenu pour l'affichage {{ event.name }}

{% trans %}Du{% endtrans %} {{ event.startDate | date('d M Y') }} {% trans %}au{% endtrans %} {{ event.endDate | date('d M Y') }}

{% trans %}Voir{% endtrans %} {% trans %}Editer{% endtrans %} {% if is_granted('ROLE_AGENT') or ( event.settings.setting('accessModeration') == true ) %} {% trans %}Modérer{% endtrans %} {% else %} {% trans %}Contenus{% endtrans %} {% endif %} {% if is_granted('ROLE_AGENT') or ( event.settings.setting('accessModeration') == true ) %} {% trans %}Corbeille{% endtrans %} {% endif %} {% trans %}Stats{% endtrans %}
{{ form_errors(form) }}
{{ form_row(form.source) }}
{{ form_row(form.title) }}
{{ form_row(form.subtitle) }}
{{ form_row(form.content) }}
{% if ( content.contentData.type == 'image' ) or ( content.contentData.type == 'video' ) %}
{% if content.contentData.type == 'image' %} {% if content.contentData.s3Filename == null or content.contentData.s3Filename == '' %} {% else %} {% endif %} {% endif %} {% if content.contentData.type == 'video' %} {% if content.contentData.s3Filename == null or content.contentData.s3Filename == '' %} {% else %} {% endif %} {% endif %}
{{ form_row(form.deleteFile) }}
{% endif %}
{{ form_row(form.file) }}

{% trans %}(Envoi limité à 50 Mo){% endtrans %}

{{ form_widget(form._token) }}
{% endblock %} {% block body_end %} {% endblock %}