{% extends "base.html" %} {% block title %}principal roster — dossier{% endblock %} {% block content %}

principal roster

Admin only — manages signing principals and key enrollment.
{% if principals %}
{% for p in principals %} {% endfor %}
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 %}
{% else %}
no principals
enroll a principal to get started
{% endif %} {% endblock %}