{% extends "modal_base.html" %} {% block modal_class %}w-11/12 max-w-[90ch] max-h-[95%] overflow-y-auto{% endblock %} {% block form_attributes %}onsubmit="event.preventDefault();"{% endblock %} {% block modal_content %}

Ingestion Task Archive {{ tasks|length }} total

A history of all ingestion tasks for {{ user.email }}.

{% if tasks %}
{% for task in tasks %}
{{ task.content_kind }} {{ task.state_label }}
{{ task.content_summary }}
{{ task.id }}
Attempts {{ task.attempts }} / {{ task.max_attempts }}
Priority {{ task.priority }}
Scheduled {{ task.scheduled_at|datetimeformat(format="short", tz=user.timezone) }}
Updated {{ task.updated_at|datetimeformat(format="short", tz=user.timezone) }}
Created {{ task.created_at|datetimeformat(format="short", tz=user.timezone) }}
Worker {% if task.worker_id %} {{ task.worker_id }} {% else %} Unassigned {% endif %}
Lease {{ task.lease_duration_secs }}s
{% if task.locked_at %}
Locked {{ task.locked_at|datetimeformat(format="short", tz=user.timezone) }}
{% endif %}
{% if task.error_message or task.last_error_at %}
{% if task.error_message %}
{{ task.error_message }}
{% endif %} {% if task.last_error_at %}
Last error {{ task.last_error_at|datetimeformat(format="short", tz=user.timezone) }}
{% endif %}
{% endif %}
{% endfor %}
{% else %}

No tasks yet. Start an ingestion to populate the archive.

{% endif %} {% endblock %} {% block primary_actions %}{% endblock %}