{% extends "chrono/manager_agenda_day_view.html" %}
{% load i18n %}
{% block content %}
{% if not hours %}
{% trans "No opening hours this day." %}
{% else %}
{% for hour in hours %}
{{ hour|time:"H" }} h
{% endfor %}
{% for user in users %}
{% spaceless %}
{% if user.bookings and allow_check %}
{{ user.name }}
{% else %}
{{ user.name }}
{% endif %}
{% endspaceless %}
{% for booking in user.bookings %}
{% trans "Booked period:" %}
–
{% endfor %}
{% for booking in user.bookings %}
{% 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 %}
{% for booking in user.bookings %}
{% if booking.user_was_present is not None and booking.computed_start_time != None and booking.computed_end_time != None %}