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

{% if event.label %} {{ event.label }} — {{event.start_datetime|date:"DATETIME_FORMAT"}} {% else %} {{ event.start_datetime|date:"DATETIME_FORMAT"}} {% endif %}

{% if event.cancellation_status %}{{ event.cancellation_status }}{% endif %} {% if event.main_list_full %}{% trans "Full" %}{% endif %} {% if event.invoiced %} {% trans "Invoiced" %} {% elif event.check_locked %} {% trans "Check locked" %} {% endif %} {% if event.checked %}{% trans "Checked" %}{% endif %} {% if event.is_day_past and not event.cancelled %} {% if event.present_count %}{% blocktrans with count=event.present_count %}Presents {{ count }}{% endblocktrans %}{% endif %} {% if event.absent_count %}{% blocktrans with count=event.absent_count %}Absents {{ count }}{% endblocktrans %}{% endif %} {% if event.notchecked_count %}{% blocktrans with count=event.notchecked_count %}Not checked {{ count }}{% endblocktrans %}{% endif %} {% endif %}
{% block appbar_actions %} {% if user_can_manage or event.agenda.booking_form_url %} {% endif %} {% if not event.cancelled %} {% if event.is_day_past or agenda.enable_check_for_future_events %} {% trans "Check" %} {% endif %} {% endif %} {% endblock %} {% endblock %} {% block content %}
{% include "chrono/manager_event_detail_fragment.html" %}
{% endblock %}