{% extends saladbar_base_template %} {% load static %} {% block title %}{{ task.name }} — Salad Bar{% endblock title %} {% block css %} {% endblock css %} {% block content %}
{{ task.task }}
| ID | Status | Started | Completed | Duration | Worker | |
|---|---|---|---|---|---|---|
| {{ r.task_id|truncatechars:12 }} | {% if r.status == "SUCCESS" %} success {% elif r.status == "FAILURE" %} failure {% elif r.status == "STARTED" %} started {% elif r.status == "PENDING" %} pending {% else %} {{ r.status|lower }} {% endif %} | {{ r.date_created|default:"—" }} | {{ r.date_done|default:"—" }} | {% if r.date_created and r.date_done and r.status == "SUCCESS" %} {{ r.date_created|timeuntil:r.date_done }} {% else %}—{% endif %} | {{ r.worker|default:"—" }} | Detail |
| No execution history. | ||||||