{% extends 'base.html.twig' %} {% block page_header %}

{% if pavilion.flagName %} {% endif %} {% block page_header_title %} {{ pavilion.name }} {% endblock %} {% block page_header_subtitle %} {{ system_year.year }} {% endblock %}

{% endblock %} {% block content %} {% if not profile %}

{% if pavilion.flagName %} {% endif %} Pavilion Profile

There is no profile for this pavilion for the selected year.

Create One {% if form and form.year.vars.choices|length %}

Or copy profile content from another year:

{{ form_widget(form.year) }}
{{ form_rest(form) }}
{% endif %}
{% else %} {{ include('Pavilion/_actions.html.twig') }}

Pavilion Description

{{ profile.description|striptags|raw|nl2br }}

Location

{{ profile.location|raw }}
{{ profile.parking|raw }}

Contact

{{ profile.hostingOrganization|raw }}
{% if profile.president %} {{ profile.president.name|raw }} {{ profile.president.phone|raw }} {{ profile.president.email|raw }}
{% endif %}
{% if profile.manager %} {{ profile.manager.name|raw }} {{ profile.manager.phone|raw }} {{ profile.manager.email|raw }}
{% endif %}
{% if profile.adultAmb1 %} {{ profile.adultAmb1.name|raw }} {{ profile.adultAmb1.phone|raw }} {{ profile.adultAmb1.email|raw }} {% endif %}
{% if profile.adultAmb2 %} {{ profile.adultAmb2.name|raw }} {{ profile.adultAmb2.phone|raw }} {{ profile.adultAmb2.email|raw }} {% endif %}
{% if profile.youthAmb1 %} {{ profile.youthAmb1.name|raw }} {{ profile.youthAmb1.phone|raw }} {{ profile.youthAmb1.email|raw }} {% endif %}
{% if profile.youthAmb2 %} {{ profile.youthAmb2.name|raw }} {{ profile.youthAmb2.phone|raw }} {{ profile.youthAmb2.email|raw }} {% endif %}
{% if profile.barManager %} {{ profile.barManager.name|raw }} {{ profile.barManager.phone|raw }} {{ profile.barManager.email|raw }}
{% endif %}
{% if profile.foodManager %} {{ profile.foodManager.name|raw }} {{ profile.foodManager.phone|raw }} {{ profile.foodManager.email|raw }}
{% endif %}
{% if profile.onsiteContact %} {{ profile.onsiteContact.name|raw }} {{ profile.onsiteContact.phone|raw }} {{ profile.onsiteContact.email|raw }}
{% endif %}
{{ profile.facebook|raw }}
{{ profile.twitter|raw }}
{{ profile.instagram|raw }}
{{ profile.website|raw }}

Passport Logo & Images

{% for image in ['image1File', 'image2File', 'image3File'] %} {% set asset = vich_uploader_asset(profile, image) %} {% if asset %} {% endif %} {% endfor %}

Menu & Performances

{{ profile.performances|raw }}
{{ profile.menu|raw }}

Documents

{% for document in profile.documents %} {% set url = vich_uploader_asset(document, 'documentFile') %} {% set ext = url|split('.')|last %} {% if ext in ['jpg', 'png', 'gif', 'bmp', 'jpeg'] %} {% set ext = 'image' %} {% endif %} {{ document }} {% if document.description %} {{ document.description|slice(0, 100) }}... {% endif %} {% endfor %}

Images

{% for image in profile.images %}

{% if image.description %} {{ image.description|slice(0, 30) }}... {% endif %} Download

{% endfor %}
{{ include('Pavilion/_actions.html.twig') }} {% endif %} {% endblock %}