{% if perms.agenda_culturel.change_place %}
< Tous les lieux
{% endif %}
{% if perms.agenda_culturel.change_place %}
{% endif %}
{{ object.name }}
- Adresse : {{ object.address }}, {{ object.city }}
- Coordonnée GPS : {{ object.location }}
{% if object.nb_events > 0 %}
- Nombre d'événements : {{ object.nb_events }}
{% else %}
- Aucun événement n'est enregistré dans ce lieu
{% endif %}
{% if object_list %}
Événements
{% include "agenda_culturel/navigation.html" with page_obj=page_obj %}
{% for event in object_list %}
{% include "agenda_culturel/single-event/event-in-flat-list-inc.html" with event=event no_location=1 %}
{% endfor %}
{% include "agenda_culturel/navigation.html" with page_obj=page_obj %}
{% endif %}
{% endblock %}