{% extends "chrono/manager_home.html" %} {% load i18n %} {% block page-title-extra-label %} - {% firstof agenda.label object.label %} {% endblock %} {% block breadcrumb %} {{ block.super }} {{agenda.label}} {{object}} {% endblock %} {% block appbar %} {% if object.label %}

{{ object.label }} — {{object.start_datetime|date:"DATETIME_FORMAT"}}

{% else %}

{{ object.start_datetime|date:"DATETIME_FORMAT"}}

{% endif %} {% if user_can_manage %} {% trans "Options" %} {% endif %} {% endblock %} {% block content %} {% 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 %}

{% 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 %} {% endblock %}