{% extends 'base.html.twig' %} {% block stylesheets %} {% endblock %} {% block body %}

Analytics Forecasting - {{ date | date('M - l') }}

{% for i in 0..6 %} {% if agg_data[i].total_riders == 0 %} {% else %} {% endif %} {% endfor %}
Day # JO # Rider JO per Rider
{{ agg_data[i].label }} {{ agg_data[i].total_jos }} {{ agg_data[i].total_riders }}0{{ (agg_data[i].total_jos / agg_data[i].total_riders) | round(1, 'common') }}
{% for hub in hub_list %}

{{ hub.label }}

{% for i in 0..6 %} {% if hub.data_shift[i].total_riders == 0 %} {% else %} {% endif %} {% endfor %} {% if hub.total_riders == 0 %} {% else %} {% endif %}
Day # JO # Rider JO per Rider
{{ hub.data_shift[i].weekday }} {{ hub.data_shift[i].total_jos }} {{ hub.data_shift[i].total_riders }}0{{ (hub.data_shift[i].total_jos / hub.data_shift[i].total_riders) | round(1, 'common') }}
Overall {{ hub.total_jos }} {{ hub.total_riders }}0{{ (hub.total_jos / hub.total_riders) | round(1, 'common') }}
{% for day_data in hub.data_shift %}
{% for shift_data in day_data.shifts %} {% for i in 1..shift_data.count %} {% for hour_coverage in shift_data.hours %} {% if hour_coverage %} {% else %} {% endif %} {% endfor %} {% endfor %} {% endfor %}
{{ 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
{{ shift_data.label }}
{% endfor %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}