{% extends "base.html" %} {% block content %}
{% if job_list %}Job | Created at | Created by | Started at | Finished at | Cancelled at | Actions |
---|---|---|---|---|---|---|
{{ job.name }}
|
{{ job.created_at }} | {{ job.created_by }} | {% if job.started_at %} {{ job.started_at }} {% else %} Not applicable {% endif %} | {% if job.finished_at %} {{ job.finished_at }} {% else %} Not applicable {% endif %} | {% if job.cancelled_at %} {{ job.cancelled_at }} {% else %} Not applicable {% endif %} | View status |
No job run history found.
{% endif %} {% endblock %}