Tested Activities
{{ tested_activities|length }} / {{ total_activities_count }}
{% if tested_activities|length > 0 %}
{% for activity in tested_activities %}
{{ activity }}
{% if activity in activity_count_history %}
{{ activity_count_history[activity] }} times
{% endif %}
{% endfor %}
{% else %}
No tested activities detected
{% endif %}
All Activities Overview
Total: {{ total_activities|length }}
{% if total_activities|length > 0 %}
{% for activity in total_activities %}
{% if activity in tested_activities %}
{% else %}
{% endif %}
{{ activity }}
{% if activity in activity_count_history %}
{{ activity_count_history[activity] }} times
{% endif %}
{% endfor %}
{% else %}
No activities information available
{% endif %}