{% extends 'base.html.twig' %} {% block title %}SiteEvent {% endblock %} {% block body %}

Site Event

{% set firstPicture = site_event.galeryPictures|first %} {% if firstPicture %} Image de l'event {% else %} Default image {% endif %}
{{ site_event.name }}

Address : {{site_event.address}}

Postal Code : {{site_event.postalCode}}

City : {{site_event.city}}

description: {{site_event.description}}

Revenir à la liste Modifier
{# ------------------------------card contact ----------------------------- #}

contact

{% for contact in site_event.contact %}
{% set firstPicture = contact.galeryPictures %} {% if firstPicture %} Image de {{ contact.firstName }} {% else %} Default image {% endif %}
{{ contact.firstName }}

telephone : {{contact.phoneNumber}}

email : {{contact.email}}

{% endfor %}
{# ------------------------------ event card -------------------------------- #}

Events lié

{% for event in events %} =>{{ event.name }} {% endfor %}

{{ include('site_event/_delete_form.html.twig') }} {% endblock %}