{% set title = "Overall Time Distribution" %} {% set navigation = [('Reports', ''), ('Time Distribution', '')] %} {% include 'include_header.html' %}
{% if users_imported %}

Imported users:

    {% for iu in users_imported %}
  • {{ iu['name'] }}
  • {% endfor %}
{% endif %} {% if users_failed %}

Failed to import users:

    {% for fu in users_failed %}
  • {{ fu['name'] }} - Error: {{ fu['error'] }}
  • {% endfor %}
{% endif %}
Overall Distribution
{% for row in overall.data() %} {% endfor %}
name bookings days percent
{{ row[0] }} {{ row[1] }} {{ row[2] }} {{ row[3] }}
CEM Distribution
{% for row in cem.data() %} {% endfor %}
name bookings days percent
{{ row[0] }} {{ row[1] }} {{ row[2] }} {{ row[3] }}
Reminder: Uncategorized Bookings (Review and Update)
{% for b in overall.reminder %} {% endfor %}
Booking Title Start Actions
{{ b['title'] }} {{ b['start'] }}
{% include 'booking_form.html' %}