{% extends 'base.html' %} {% set title = 'Batches' %} {% block content %}
All batches

Credential deliveries

Create batch
{% for batch in batches %} {% else %} {% endfor %}
Name Credentials Keys Status Created
{{ batch.name }} {% if batch.description %}
{{ batch.description }}
{% endif %}
{{ batch.credential_count }} {{ batch.access_keys|length }} {{ 'active' if batch.is_active else 'paused' }} {{ batch.created_at|datetime_local }} Open
No batches yet.
{% endblock %}