{% extends "admin/base.html" %} {% block admin_title %}作业中心{% endblock %} {% block page_title %}作业中心{% endblock %} {% block page_subtitle %}跟踪导入、全量构建、失败日志与执行耗时{% endblock %} {% block admin_content %}
{% for key, label in [('total','全部'),('running','运行中'),('queued','排队'),('succeeded','成功'),('failed','失败')] %}
{{ label }}
{{ summary[key] }}
{% endfor %}

执行记录

最多显示最近 50 条

{% for job in jobs %} {% else %} {% endfor %}
JobMatchStageStatusDuration
#{{ job.id }}
{{ job.job_type }}
{{ job.match_id or '-' }} {{ job.current_stage or '-' }} · {{ job.progress }}% {{ job.status }} {{ '%.2fs'|format(job.duration_seconds) if job.duration_seconds is not none else '-' }}
当前筛选没有作业
{% endblock %} {% block scripts %} {{ super() }} {% if selected_job %} {% endif %} {% endblock %}