{% extends "base.html" %} {% from "_macros.html" import status_badge %} {% block title %}DCF Dashboard — Overview{% endblock %} {% block content %}

Overview

Status across all registered data contracts.

Contracts
{{ contracts|length }}
Compliant runs
{{ counts.COMPLIANT }}
Breaching runs
{{ counts.BREACH }}
Errors
{{ counts.ERROR }}

Registered Contracts

{% if contracts %} {% for c in contracts %} {% endfor %}
Name Version Published
{{ c.name }} v{{ c.version }} {{ c.published_at }}
{% else %}

No contracts registered yet.

{% endif %}

Recent Breach Events

{% if breach_events %} {% for r in breach_events %} {% endfor %}
Contract Version Validated At Status
{{ r.contract_name }} v{{ r.contract_version }} {{ r.validated_at }} {{ status_badge(r.overall_status) }}
{% else %}

No recent breach events.

{% endif %}
{% endblock %}