{% extends "chrono/manager_event_detail.html" %} {% load staticfiles i18n %} {% block breadcrumb %} {{ block.super }} {% trans "Check" %} {% endblock %} {% block appbar_actions %}{% endblock %} {% block content %}

{% blocktrans with places=object.places booked_places=booked|length %}Bookings ({{ booked_places }}/{{ places }}){% endblocktrans %}

{{ filterset.form.as_p }}
{% if booked and not event.checked %} {% endif %} {% if booked_without_status %} {% if not event.checked or not agenda.disable_check_update %} {% endif %} {% endif %} {% for booking in booked %} {% include "chrono/manager_event_check_booking_fragment.html" %} {% endfor %}
{% csrf_token %}
{% trans "Mark all bookings without status:" %}
{% csrf_token %}
{% csrf_token %} {% if absence_form.reason.field.choices.1 %}{{ absence_form.reason }}{% endif %}
{% if object.waiting_list_places %}

{% blocktrans with places=object.waiting_list_places booked_places=waiting|length %}Waiting List ({{ booked_places }}/{{ places }}){% endblocktrans %}

{% for booking in waiting %} {% endfor %}
{{ booking.get_user_block }}
{% endif %} {% endblock %}