{% extends "admin_base.html" %} {% block title %}DID Documents - Admin Panel{% endblock %} {% block content %}

DID Documents

{{ total_documents }} documents ({{ current_page }} of {{ total_pages }} pages)

{% if did_documents %}
{% for document in did_documents %} {% endfor %}
DID Services Keys Aliases Created Updated Actions
{{ document.did }}
{{ document.service_count }} {{ document.verification_method_count }} {{ document.also_known_as_count }} {{ document.created_at }} {{ document.updated_at }} View
{{ view_pagination(pagination) }}
{% else %}

No DID Documents Found

No DID documents are currently stored in the system.

{% endif %}

About DID Documents

DID Documents are JSON-LD documents that contain public keys, authentication methods, and service endpoints for decentralized identifiers. Each document includes:

Note: These documents are cached from identity resolution operations and may not represent the current state on the network.
{% endblock %}