{% extends "base.html" %} {% block title %}Certification · HivePlane{% endblock %} {% block content %}

Certification dashboard

Certified
{{ view.status_counts.get("certified", 0) }}
Provisional
{{ view.status_counts.get("provisional", 0) }}
Uncertified
{{ view.status_counts.get("uncertified", 0) }}
Quarantined
{{ view.status_counts.get("quarantined", 0) }}

Pass-rate trend

{% if view.trends %} {% for point in view.trends %} {% endfor %}
Workload When Pass rate Status Attestation
{{ point.workload }} {{ point.timestamp }} {% if point.pass_rate is not none %}{{ "%.0f%%"|format(point.pass_rate * 100) }}{% else %}—{% endif %} {{ point.status }} {{ point.attestation_id or "—" }}
{% else %}

No certifications recorded.

{% endif %}

Last certified

{% if view.last_certified %} {% for row in view.last_certified %} {% endfor %}
Workload Last certification Status
{{ row.workload }} {{ row.timestamp }} {{ row.status }}
{% else %}

No certifications recorded.

{% endif %}

Quarantine history

{% if view.quarantine_history %} {% for entry in view.quarantine_history %} {% endfor %}
Workload When Record
{{ entry.workload }} {{ entry.timestamp }} {{ entry.record_id }}
{% else %}

No quarantine events recorded.

{% endif %} {% endblock %}