{% extends "base.html" %} {% block title %}Batches{% endblock %} {% block content %}
{% if batches %}
{% for batch in 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 txid: {{ batch.anchor_receipt.txid[:12] }}... {% else %} Pending {% endif %} {{ time_ago(batch.timestamp) }}
{% else %}

No batches yet. Submit entries and trigger a batch cycle to create batches.

{% endif %}
{% endblock %}