{% extends "agenda_culturel/page.html" %} {% block title %} {% block og_title %}{{ object.name }}{% endblock %} {% endblock %} {% load tag_extra %} {% load utils_extra %} {% load cat_extra %} {% load static %} {% load cache %} {% load l10n %} {% block entete_header %} {% css_categories %} {% endblock %} {% block fluid %}{% endblock %} {% block body-class %}place{% endblock %} {% block content %}
{% if perms.agenda_culturel.change_place %} < Tous les lieux {% endif %} {% if perms.agenda_culturel.change_place %} {% endif %}

{{ object.name }}

  • Adresse : {{ object.address }}, {{ object.city }}
  • {# djlint:off #} Coordonnée GPS : {{ object.location|tocoords }} {# djlint:on #}
  • {% with object.nb_events_future as nb %} {% if nb > 0 %}
  • {{ nb }} événement{{ nb|pluralize }} à venir
  • {% else %}
  • Aucun événement à venir
  • {% endif %} {% endwith %}
{% if object.description and not object.description|html_vide %}

Description du lieu

{{ object.description|safe }} {% endif %} {% with object.organisation_set.all as organisations %} {% if organisations|length == 1 %}

L'organisme {{ organisations.0 }} organise régulièrement des événements dans ce lieu.

{% endif %} {% if organisations|length > 1 %}

Les organismes suivants utilisent régulièrement ce lieu :

    {% for o in organisations %}
  • {{ o }}
  • {% endfor %}
{% endif %} {% endwith %}

Voir aussi les autres lieux

{% with cache_timeout=user.is_authenticated|yesno:"30,600" %} {% cache cache_timeout place_list user.is_authenticated object.pk page_obj.number past %}
S'abonner à l'agenda {% picto_from_name "calendar" %} {% if past %} Voir les événements à venir {% else %} Voir les événements passés {% endif %}
{% if past %}

Événements passés

{% else %}

Événements à venir

{% endif %} {% if object_list %} {% include "agenda_culturel/navigation.html" with page_obj=page_obj %} {% for event in object_list %} {% include "agenda_culturel/single-event/event-elegant-inc.html" with event=event day=0 no_location=1 %} {% endfor %} {% include "agenda_culturel/navigation.html" with page_obj=page_obj %} {% endif %} {% endcache %} {% endwith %}
{% endblock %}