{{ event.city }}

{{ event.start|date:"D, d N Y H:i" }}

{% if event.end %}

{{ event.end|date:"D, d N Y H:i" }}

{% endif %}

    {% for orga in event.organisers.all %}
  • {{ orga.get_full_name }}
  • {% endfor %}

{% if event.booking_close %}

{{ event.booking_close|date:"D, d N Y H:i" }}

{% endif %} {% if event.choices_close %}

{{ event.choices_close|date:"D, d N Y H:i" }}

{% endif %}

    {% for category in event.categories.all %}
  • {{ category.name }} : {{ category.price|default:"Free" }} {% if category.price and event.price_currency %}({{event.price_currency}}){% endif %}
  • {% endfor %}
{% if price != None %}

{{ price|default:"Free" }} {% if event.price_currency and price %}({{event.price_currency}}){% endif %}

{% endif %}
{% if event.location_name %}

{{event.location_name}}

{% endif %} {% if event.location_address %}

{{event.location_address}}

{% endif %} {% if event.description %}

{{event.description}}

{% endif %}