{% 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 %}
A history of all ingestion tasks for {{ user.email }}.
{% if tasks %}| Content | State | Attempts | Scheduled | Updated | Worker | Error |
|---|---|---|---|---|---|---|
|
{{ task.content_kind }}
{{ task.content_summary }}
{{ task.id }}
|
{{ task.state_label }} |
{{ task.attempts }} / {{ task.max_attempts }}
Priority {{ task.priority }}
|
{{ task.scheduled_at|datetimeformat(format="short", tz=user.timezone) }}
{% if task.locked_at %}
Locked {{ task.locked_at|datetimeformat(format="short", tz=user.timezone) }}
{% endif %}
|
{{ task.updated_at|datetimeformat(format="short", tz=user.timezone) }}
Created {{ task.created_at|datetimeformat(format="short", tz=user.timezone) }}
|
{% if task.worker_id %}
{{ task.worker_id }}
Lease {{ task.lease_duration_secs }}s
{% else %}
Not assigned
{% endif %}
|
{% if task.error_message %}
{{ task.error_message }}
{% if task.last_error_at %}
{{ task.last_error_at|datetimeformat(format="short", tz=user.timezone) }}
{% endif %}
{% else %}
—
{% endif %}
|
No tasks yet. Start an ingestion to populate the archive.
{% endif %} {% endblock %} {% block primary_actions %}{% endblock %}