{% extends saladbar_base_template %} {% load static %} {% block title %}Task Logs — Salad Bar{% endblock title %} {% block css %} {% endblock css %} {% block content %}

Task Logs

Showing last {{ limit }} task executions. {% if limit == 1000 %} Show all (5000) {% endif %}

Dashboard
{% for r in results %} {% empty %} {% endfor %}
Task Status Started Completed Worker
{{ r.task_name|truncatechars:60 }}
{{ r.task_id|truncatechars:16 }}
{% if r.status == "SUCCESS" %} success {% elif r.status == "FAILURE" %} failure {% elif r.status == "STARTED" %} started {% else %} {{ r.status|lower }} {% endif %} {{ r.date_created|default:"—" }} {{ r.date_done|default:"—" }} {{ r.worker|default:"—" }} Detail
No task results.
{% endblock content %} {% block script-footer %} {% endblock script-footer %}