{% extends "./base.twig" %} {% block title %}Association{% endblock %} {% block head %} {% endblock %} {% block content %}
Revenir à la liste
Forum des associations

{{ data.name }}

{#

Sous titre

#}
{% if data.gallery|length > 0 %}
{% for media in data.gallery %}
{% if media.isVideo %}
{% endif %}
{% endfor %}
{% endif %} {% if data.descriptionLong|length > 0 %}

Présentation

{{ data.descriptionLong|raw }}
{% endif %} {% if data.schedule|length > 0 %}

Crénaux

{% for item in data.schedule %}
{{ item.name }}
{% for when in item.when %}
{{ when.day }}
{{ when.from }} - {{ when.to }}
{% endfor %}
{% endfor %}
{% endif %} {% if data.pricing|length > 0 %}

Tarifs

{% for item in data.pricing %}
{{ item.priceLabel }}
{{ item.name }}
{{ item.description }}
{% endfor %}
{% endif %} {% if data.contacts is defined %}

Contact

{% if data.contacts.person|length > 0 %}
{{ data.contacts.person }}
{% endif %} {% if data.contacts.email|length > 0 %} {% endif %} {% if data.contacts.address|length > 0 %}
{% for line in data.contacts.address %} {{ line }}
{% endfor %}
{% endif %} {% if data.contacts.phone|length > 0 %} {% endif %} {% if data.contacts.website|length > 0 %} {% endif %} {% if data.contacts.facebook|length > 0 %} {% endif %} {% if data.contacts.instagram|length > 0 %} {% endif %} {% if data.contacts.twitter|length > 0 %} {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}