{% block head %} {% endblock %}
{% block content %}
{% for row in rows %} {% if row["ws"] in ['Away', 'Other'] %} {% set my_class = 'blue' %} {% elif row["ws"] in ['Active', 'Idle'] %} {% set my_class = '' %} {% else %} {% set my_class = 'grey' %} {% endif %}
{{ row["ws"] }}
{{ row["total"] }}
{% endfor %}
{% endblock %}