{% extends "chrono/manager_agenda_day_view.html" %} {% load i18n %} {% block content %} {% if not hours %}

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

{% else %}
{{ filterset.form.as_p }}
{% for booking in results %}
{% spaceless %}

{% if booking.kind == "booking" and allow_check %} {{ booking.get_user_block }} {% else %} {{ booking.get_user_block }} {% endif %}

{% endspaceless %}
{% if booking.kind == "booking" %}

{% trans "Booked period:" %}

{% endif %} {% if booking.user_was_present is not None %}

{% trans "Checked period:" %} {% if booking.user_check_type_label %}{{ booking.user_check_type_label }}{% endif %}

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