{% load i18n %} {% if object.description or object.pricing or object.url %}
{% if object.description %}

{{ object.description }}

{% endif %} {% if object.pricing %}

{% trans "Pricing:" %} {{ object.pricing }}

{% endif %} {% if object.url %}

{{ object.url|truncatechars:100 }}

{% endif %} {% if object.publication_date %}

{% trans "Publication date:" %} {{ object.publication_date }}

{% endif %}
{% endif %}

{% trans "Bookings" %} ({{booked|length}}/{{object.places}})

{% if event.booked_places > event.places %}

{% trans "This event is overbooked." %}

{% endif %}
{% if object.waiting_list_places %}

{% trans "Waiting List" %} ({{waiting|length}}/{{object.waiting_list_places}})

{% endif %}