{% extends "base.html" %} {% block content %}

Runs

Run History

Review execution outcomes and drill into run diagnostics when needed.

Filters

{% if failed_only %} Clear {% endif %}

Recent Runs

{% if runs %} {% for run in runs %} {% endfor %}
ID Started Status Trigger Scholars New Publications Failures
#{{ run.id }} {{ run.started_at }} {{ run.status }} {{ run.trigger_type }} {{ run.scholar_count }} {{ run.new_publication_count }} {{ run.failed_count }} failed / {{ run.partial_count }} partial
{% else %}

No runs match the current filter.

{% endif %}

Continuation Queue

Focus Failed Runs
{% if queue_items %} {% for item in queue_items %} {% endfor %}
Scholar Status Reason Attempts Next Attempt Last Error Actions
{{ item.scholar_label }}

resume cstart: {{ item.resume_cstart }}

{{ item.status }} {% if item.status == "dropped" and item.dropped_reason %} {{ item.dropped_reason }} {% else %} {{ item.reason }} {% endif %} {{ item.attempt_count }} {{ item.next_attempt_at }} {% if item.last_error %}
show
{{ item.last_error }}
{% else %} - {% endif %}
{% if item.status != "dropped" %}
{% endif %}
{% else %}

No queued continuation items.

{% endif %}
{% endblock %}