{% 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 %}
name |
bookings |
days |
percent |
{% for row in overall.data() %}
{{ row[0] }} |
{{ row[1] }} |
{{ row[2] }} |
{{ row[3] }} |
{% endfor %}
name |
bookings |
days |
percent |
{% for row in cem.data() %}
{{ row[0] }} |
{{ row[1] }} |
{{ row[2] }} |
{{ row[3] }} |
{% endfor %}
Booking Title |
Start |
Actions |
{% for b in overall.reminder %}
{{ b['title'] }} |
{{ b['start'] }} |
|
{% endfor %}
{% include 'booking_form.html' %}