{% extends "base.html" %}
{% import 'components/macros.html' as ui %}
{% block title %}{{ title }}{% endblock %}
{% block head_extra %}
{% endblock %}
{% block content %}
Back To Agents
{{ title }}
{{ content or 'No governance safety report generated yet.' }}
Runtime Constraints
{{ constraints or 'No runtime constraint report generated yet.' }}
Recent Governance Violations
| ID | Agent | Type | Severity | Summary | Created |
{% for row in violations %}
| {{ row.id }} | {{ row.agent_name or '-' }} | {{ row.violation_type }} | {{ row.severity }} | {{ row.summary }} | {{ row.created_at }} |
{% else %}
| No violations recorded. |
{% endfor %}
Recent Agent Events
| Event | Agent | Type | Payload Hash | Created |
{% for row in events %}
| {{ row.event_id }} | {{ row.agent_name or '-' }} | {{ row.event_type }} | {{ row.payload_hash }} | {{ row.created_at }} |
{% else %}
| No events recorded. |
{% endfor %}
{% endblock %}