{% extends "base.html" %} {% from "_macros.html" import status_badge %} {% block title %}Akad Dashboard — {{ name }}{% endblock %} {% block content %} ← Back to overview

{{ name }}

{% if detail %}

Current version v{{ detail.version }} · published {{ detail.published_at }}

Contract Definition

{{ detail_json }}
{% endif %}

Validation History (last 30)

{% if results %} {% for r in results %} {% endfor %}
Validated At Status Rows Version
{{ r.validated_at }} {{ status_badge(r.overall_status) }} {{ r.row_count if r.row_count is not none else "—" }} v{{ r.contract_version }}
{% else %}

No validation results for this contract yet.

{% endif %}
{% endblock %}