{% extends "base.html" %} {% block title %}Oikos — {{ name }}{% endblock %} {% block content %}

{{ name }}

service:{{ name }} {% if health %} {{ 'ok' if health.ok else 'unhealthy' }} as of {{ health.as_of }} {% endif %}

{% if entry.backend %}

backend: {{ entry.backend }}

{% endif %} {% if entry.url or entry.endpoint %}

url: {{ entry.url or entry.endpoint }}

{% endif %} {% if entry.doc_page %}

doc: {{ entry.doc_page }}

{% endif %} {% if entry.config_repo %}

config repo: {{ entry.config_repo }}

{% endif %} {% if entry.risk_notes %}

{{ entry.risk_notes }}

{% endif %}

Blast radius

impacts: {% for e in relations.impacts %}{{ e }} {% else %}none{% endfor %}

affected by: {% for e in relations.affected_by %}{{ e }} {% else %}none{% endfor %}

Safe actions

{% for a in actions %} {% endfor %}
ActionRiskApproval
{{ a.action }}{{ a.risk }}{{ a.approval }}

Recent changes

{% if history %} {% for h in history %} {% endfor %}
TimeActionRiskResult
{{ h.ts }}{{ h.action }}{{ h.risk }}{{ h.result }}
{% else %}

(none yet)

{% endif %} {% endblock %}