{% extends "base.html" %} {% block title %}principal roster — dossier{% endblock %} {% block content %}
| principal id | key id | scheme | status | fingerprint | registered by | registered at | revoked at | |
|---|---|---|---|---|---|---|---|---|
| {{ p.principal_id }} | {{ p.key_id }} | {{ p.scheme }} | {% if p.status == "active" %} active {% elif p.status == "rotation-due" %} rotation-due {% elif p.status == "revoked" %} revoked {% else %} {{ p.status }} {% endif %} | {{ p.fingerprint[:32] }}… | {{ p.registered_by or '—' }} | {{ p.registered_at or '—' }} | {{ p.revoked_at or '—' }} | {% if p.status == "active" %} {% endif %} |