{% 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 %}
{% if booked and not event.checked %}
|
{% endif %}
{% if booked_without_status %}
{% if not event.checked or not agenda.disable_check_update %}
{% trans "Mark all bookings without status:" %} |
|
{% endif %}
{% endif %}
{% for booking in booked %}
{% include "chrono/manager_event_check_booking_fragment.html" %}
{% endfor %}
{% 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 %}
{{ booking.get_user_block }} |
{% endfor %}
{% endif %}
{% endblock %}