{% extends "session.html" %} {% block styles %} {% endblock %} {% block scripts %} {% endblock %} {% block body %}
{% if not data %}

No data yet!

{% else %} {% for d in data %} {% set insights = d.get('data')|format_insights %} {% for key in insights %} {% if 'count' in insights[key] %} {% endif %} {% endfor %}
Attribute Count History
{{key|capitalize}} {{insights[key]['count']|capitalize}}
{% endfor %} {% endif %}
{% endblock %}