{% extends "base.html" %} {% block main %}

Tasks

{% set category_id = None %} {% for job in jobs %} {% if job.category_id != category_id %} {% set category_id = job.category_id %}
{{ categories[job.category_id].name }}
{% endif %}
{{ job.name }}
{% if job.current_status == 'started' %} Running now {% elif job.current_status == 'failed' %} Last run failed {% elif job.current_status == 'finished' %} Completed an error {% elif job.current_status == 'none' %} Waiting... {% elif job.current_status == 'succeeded' %} Succeeded at {{ job.last_run_stop }} {% endif %}
{% endfor %}
{% endblock main %}