{% extends "chrono/manager_agenda_view.html" %} {% load i18n gadjo %} {% block breadcrumb %} {{ block.super }} {% trans "Check booking" %} {% endblock %} {% block appbar %}

{% blocktrans trimmed with user=view.bookings.0.user_name %} Check booking for {{ user }} {% endblocktrans %}

{% endblock %} {% block content %} {% if multiple_bookings %}
{% for booking in view.bookings %} {% endfor %}
{% endif %}
{% csrf_token %} {% for booking in view.bookings %}
{{ booking.check_forms.0|with_template }}
{% if forms|length > 1 %}
{% trans "Second booking check" %}
{{ booking.check_forms.1|with_template }}
{% endif %}
{% endfor %}
{% trans 'Cancel' %}
{% if multiple_bookings %}
{% endif %} {% endblock %}