{% extends "fitcheck/base.html" %} {% load i18n %} {% load fitcheck_extras %} {% block fitcheck_content %}
{% translate "Figures come from the daily compliance snapshot; each row shows a doctrine's target audience and how it splits by compliance state." %}
{% if rows and not has_snapshots %}| {% translate "Doctrine" %} | {% translate "Trend (14d)" %} | {% translate "Audience" %} | {% translate "Compliant" %} | {% translate "Subs" %} | {% translate "Non-compliant" %} | {% translate "No submission" %} | {% translate "Ready" %} | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
{{ row.doctrine.name }}
{% for category in row.doctrine.categories.all %}
{{ category.name }}
{% endfor %}
|
{% if row.latest %} {% sparkline row.trend %} {% if row.delta and row.delta > 0 %} ▲ {{ row.delta }} {% elif row.delta and row.delta < 0 %} ▼ {{ row.delta }} {% endif %} {% else %} {% translate "No snapshot yet" %} {% endif %} | {% if row.latest %}{{ row.latest.audience_count }} | {{ row.latest.compliant_count }} | {{ row.latest.compliant_subs_count }} | {{ row.latest.non_compliant_count }} | {{ row.latest.no_submission_count }} | {{ row.ready_pct }}% | {% else %}— | {% endif %}|||||