{% extends "base.html" %} {% block title %}Overview{% endblock %} {% block content %}
Agents
{{ stats.certificates_total }}
Registered certificates
Entries
{{ stats.entries_total }}
Total audit entries
Batches
{{ stats.batches_total }}
Merkle batches
Pending
{{ stats.entries_pending }}
Awaiting batch
Last Anchor
{{ time_ago(stats.last_anchor) }}
Bitcoin transaction

Recent Activity

{% if recent_entries %}
{% for entry in recent_entries %} {% endfor %}
Time Agent Type Summary
{{ time_ago(entry.timestamp) }} {{ entry._agent_name }} {{ action_label(entry.action_type) }} {{ entry.action_summary }}
{% else %}

No entries yet. Register a certificate and submit entries to get started.

{% endif %}

Recent Batches

{% if recent_batches %}
{% for batch in recent_batches %} {% endfor %}
Batch ID Entries Merkle Root Anchor Time
{{ batch.batch_id[:16] }}... {{ batch.item_count }} {{ batch.merkle_root[:16] }}... {% if batch.anchor_receipt %} Anchored {% else %} Pending {% endif %} {{ time_ago(batch.timestamp) }}
{% else %}

No batches yet.

{% endif %}
{% endblock %}