{% extends "chrono/manager_agenda_month_view.html" %} {% load i18n %} {% block content %}
{% for day in days %} {% if day|date:"w" == "0" or day|date:"w" == "6" %} {% else %} {% endif %} {% endfor %} {% for day in days %} {% endfor %} {% for booking_info in user_booking_info %} {% for booking in booking_info.bookings %} {% endfor %} {% endfor %}
{{ booking_info.user_name }} {% if booking %} {% if booking.check_css_class == 'present' %} {% trans "Present" %} {% elif booking.check_css_class == 'absent' %} {% trans "Absent" %} {% else %} {% trans "Not checked" %} {% endif %} {% endif %}
{% endblock %}