{% extends "base.html" %} {% block title %}operations — dossier{% endblock %} {% block content %}

operations

{{ estates | length }} projects

Estate health composed from regista's pool, maintenance, and chain checks. Deployment operations are owned by agent-suite — this view is read-only.

{% for estate in estates %}

{{ estate.project_name }}

{% for comp in estate.components %}
{{ comp.name }}
{% if comp.healthy %} healthy {% else %} unhealthy {% endif %} {% if comp.version %} {{ comp.version }} {% endif %}
{% if comp.detail %}
{{ comp.detail }}
{% endif %}
{% endfor %}
overall
{% if estate.overall_healthy %} healthy {% else %} degraded {% endif %}
{% if estate.findings %} {% endif %}
{% endfor %} {% if findings %}

operational findings

{% endif %} {% if not estates %}
no estate data
connected project health will appear here
{% endif %} {% endblock %}