{% extends "base.html" %} {% block title %}Jobs - FailCore{% endblock %} {% block content %}

BACKGROUND JOBS

Running

{{ stats.running }}

Queued

{{ stats.queued }}

Completed

{{ stats.success }}

Failed

{{ stats.failed }}

Job Queue

{% if jobs %} {% for job in jobs %} {% endfor %}
JOB ID TYPE STATUS CREATED DURATION ARTIFACTS
{{ job.job_id }} {{ job.type }} {% if job.status == "running" %} RUNNING {% elif job.status == "queued" %} QUEUED {% elif job.status == "success" %} SUCCESS {% elif job.status == "failed" %} FAILED {% endif %} {{ "%.0f"|format(job.created_at) }} {% if job.finished_at and job.started_at %} {{ "%.2fs"|format(job.finished_at - job.started_at) }} {% elif job.started_at %} Running... {% else %} — {% endif %} {% if job.artifacts %} {{ job.artifacts | length }} file(s) {% else %} — {% endif %}
{% else %}

No jobs yet.

Jobs will appear here when you execute actions (Report, Audit, etc.)

{% endif %}
{% endblock %}