{% extends "base.html" %} {% block title %}Finished Jobs - Control Plane{% endblock %} {% block content %}
{% if finished_jobs|length > 0 %} {% for job in finished_jobs %} {% endfor %} {% else %} {% endif %}
Job Queue Created At Finished At Runtime
id: {{ job.id }}
{{ job.queue_name }}
{{ job.created_at }}
{{ job.finished_at }}
{{ job.runtime }}
No finished jobs found
{{ current_page_num }} / {{ total_pages }}
{% if current_page_num > 1 %} Previous page {% else %} {% endif %} {% if current_page_num < total_pages %} Next page {% else %} {% endif %}
{% endblock %}