{% extends "base.html" %} {% block title %}Jobs - FailCore{% endblock %} {% block content %}
{{ stats.running }}
{{ stats.queued }}
{{ stats.success }}
{{ stats.failed }}
| 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 %} |
No jobs yet.
Jobs will appear here when you execute actions (Report, Audit, etc.)