{% extends "chrono/manager_agenda_day_view.html" %} {% load i18n %} {% block main-content-attributes %}class="partial-booking-dayview"{% endblock %} {% block extra_date_title %} {% if event.invoiced %} {% trans "Invoiced" %} {% elif event.check_locked %} {% trans "Check locked" %} {% endif %} {% if event.checked %}{% trans "Checked" %}{% endif %} {% endblock %} {% block content %} {% if not hours %}

{% trans "No opening hours this day." %}

{% else %}
{% trans "Filtering options" %}
{{ filterset.form.as_p }}
{% if results and not event.checked and not event.check_locked %}
{% csrf_token %}
{% endif %}
{% if view.date.date == today %} {% endif %}
{% for user in users %}
{% spaceless %}

{{ user.name }} {% if allow_check %} 1 %}data-selector=".pk-tabs"{% endif %} href="{{ user.check_url }}" >{% trans "Check" %} {% endif %}

{% endspaceless %}
{% for booking in user.bookings %} {% if booking.start_time %}

{% trans "Booked period:" %}

{% endif %} {% endfor %}
{% if user.bookings %}
{% for check in user.booking_checks %}

{% trans "Checked period:" %} {% if check.start_time %} {% endif %} {% if check.end_time %} {% endif %} {% if check.type_label %}{{ check.type_label }}{% endif %}

{% endfor %}
{% for check in user.booking_checks %} {% if check.computed_start_time and check.computed_end_time %}

{% trans "Computed period:" %}

{% endif %} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}