{% if results 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 result in results %}
{% if result.kind == 'booking' %}
{% if result.cancellation_datetime is None %}
{% include "chrono/manager_event_check_booking_fragment.html" with booking=result %}
{% else %}
{{ result.get_user_block }} |
({% trans "Cancelled" %}) |
{% if not event.checked or not agenda.disable_check_update %}
|
{% endif %}
{% endif %}
{% elif result.kind == 'subscription' %}
{{ result.get_user_block }} |
({% trans "Not booked" %}) |
{% if not event.checked or not agenda.disable_check_update %}
|
{% endif %}
{% endif %}
{% endfor %}