{% extends "base.html" %}{% from "_macros.html" import traffic_table, run_pill %}
{% block title %}Dashboard{% endblock %}
{% block main %}
Dashboard
Peers
{% for n, p in peers %}| {{ n }} | {{ p.base_url }} | {{ p.auth.type }} | {{ p.mode }} |
{% endfor %}
FHIR endpoint for peers to call: {{ settings.base_url }}
Recent scenario runs
{% for r in runs %}| {{ r.scenario }} | {{ r.peer }} | {{ run_pill(r.status) }} | {{ r.ts[5:16]|replace('T', ' ') }} |
{% else %}| No runs yet — run a scenario. |
{% endfor %}
Simulator activity
{% for s in sim %}| {{ s.ts[11:19] }} | {{ s.action }} | {{ s.subject }} | {{ s.detail[:80] }} |
{% else %}| Nothing simulated yet. Inbound orders, appointments, prescriptions and claims are auto-fulfilled. |
{% endfor %}
Latest traffic all →
{{ traffic_table(traffic) }}
{% endblock %}