{% extends "base.html" %}{% from "_macros.html" import traffic_table, run_pill %} {% block title %}Dashboard{% endblock %} {% block main %}

Dashboard

Local store

{% for t, c in counts.items() %}{{ t }}{{ c }}{% else %}Empty. Run adt.facility or sekmet seed.{% endfor %}

Peers

{% for n, p in peers %}{% endfor %}
{{ n }}{{ p.base_url }}{{ p.auth.type }}{{ p.mode }}

FHIR endpoint for peers to call: {{ settings.base_url }}

Recent scenario runs

{% for r in runs %}{% else %}{% endfor %}
{{ r.scenario }}{{ r.peer }}{{ run_pill(r.status) }}{{ r.ts[5:16]|replace('T', ' ') }}
No runs yet — run a scenario.

Simulator activity

{% for s in sim %}{% else %}{% endfor %}
{{ s.ts[11:19] }}{{ s.action }}{{ s.subject }}{{ s.detail[:80] }}
Nothing simulated yet. Inbound orders, appointments, prescriptions and claims are auto-fulfilled.

Latest traffic all →

{{ traffic_table(traffic) }}
{% endblock %}