{% extends "base.html" %} {% block title %}Batch {{ batch.batch_id[:12] }}...{% endblock %} {% block content %}

Batch Information

{% if anchor %} Anchored {% else %} Not Anchored {% endif %}
Batch ID
{{ batch.batch_id }}
Merkle Root
{{ batch.merkle_root }}
Entry Count
{{ batch.item_count }}
Created
{{ format_ts(batch.timestamp) }}
{% if anchor %}
Transaction ID
{{ anchor.txid }}
Network
{{ anchor.network }}
View on Blockchain →
{% endif %}

Entries in this Batch

{% if entries %}
{% for entry in entries %} {% endfor %}
# Agent Type Summary Entry ID
{{ entry.sequence }} {{ entry._agent_name }} {{ action_label(entry.action_type) }} {{ entry.action_summary }} {{ entry.entry_id[:16] }}...
{% else %}

No entries found for this batch.

{% endif %}
{% endblock %}