| Day |
# JO |
# Rider |
JO per Rider |
{% for i in 0..6 %}
| {{ agg_data[i].label }} |
{{ agg_data[i].total_jos }} |
{{ agg_data[i].total_riders }} |
{% if agg_data[i].total_riders == 0 %}
0 |
{% else %}
{{ (agg_data[i].total_jos / agg_data[i].total_riders) | round(1, 'common') }} |
{% endif %}
{% endfor %}
{% for hub in hub_list %}
| Day |
# JO |
# Rider |
JO per Rider |
{% for i in 0..6 %}
| {{ hub.data_shift[i].weekday }} |
{{ hub.data_shift[i].total_jos }} |
{{ hub.data_shift[i].total_riders }} |
{% if hub.data_shift[i].total_riders == 0 %}
0 |
{% else %}
{{ (hub.data_shift[i].total_jos / hub.data_shift[i].total_riders) | round(1, 'common') }} |
{% endif %}
{% endfor %}
| Overall |
{{ hub.total_jos }} |
{{ hub.total_riders }} |
{% if hub.total_riders == 0 %}
0 |
{% else %}
{{ (hub.total_jos / hub.total_riders) | round(1, 'common') }} |
{% endif %}
{% for day_data in hub.data_shift %}
| {{ day_data.weekday }} |
00 |
01 |
02 |
03 |
04 |
05 |
06 |
07 |
08 |
09 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
{% for shift_data in day_data.shifts %}
{% for i in 1..shift_data.count %}
| {{ shift_data.label }} |
{% for hour_coverage in shift_data.hours %}
{% if hour_coverage %}
|
{% else %}
|
{% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}
{% block scripts %}
{% endblock %}