{% extends "base.html" %} {% block content %} {% if job_list %}
{{ filters_form.created_by }}
{{ filters_form.job_name_search }}
Clear filters
{% for job in job_list %} {% endfor %}
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
{% else %}

No job run history found.

{% endif %} {% endblock %}