{% extends "base.html" %} {% block title %}Dashboard - KarmaSakshi Console{% endblock %} {% block content %}

KarmaSakshi Protocol -- Control Plane

Kill switch

Status: {% if kill_switch_engaged %} ENGAGED -- execution refused

{% else %} disengaged
{% endif %}

Audit integrity

{% if audit_ok %} chain verified {% else %} TAMPERING DETECTED {% endif %} ({{ event_count }} events)

Pending approvals

{% if pending %} {% for m in pending %} {% endfor %}
ManifestEffectTargetRiskReversibilityState
{{ m.manifest_id[:8] }} {{ m.effect_type }} {{ m.target_resource }} {{ m.risk }} {{ m.reversibility }} {{ m.lifecycle_state }} review
{% else %}

No manifests awaiting authorization.

{% endif %}

All manifests

{% for m in all_manifests %} {% endfor %}
ManifestEffectState
{{ m.manifest_id[:8] }} {{ m.effect_type }} {{ m.lifecycle_state }}
{% endblock %}