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

{{ name }}

host:{{ name }} {{ entry.kind }} {{ entry.get('state', 'active') }}

{% if entry.host %}

runs on: {{ entry.host }}

{% endif %} {% if entry.role %}

role: {{ entry.role }}

{% endif %} {% if entry.lan_ip %}

address: {{ entry.lan_ip }}

{% endif %} {% if entry.mounts %}

mounts: {% for m in entry.mounts %}{{ m }} {% endfor %}

{% 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 %}

{% if relations.blast_radius %}

full blast radius: {% for e in relations.blast_radius %}{{ e }} {% endfor %}

{% endif %}

Recent changes

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

(none yet)

{% endif %} {% endblock %}