{% extends "base.html" %} {% block title %}Tasks — Cairn Dashboard{% endblock %} {% block content %}

Tasks

{% if tasks %} {% for t in tasks %} {% endfor %}
ID Kind Status Resource Assigned to Created Claimed Completed
{{ t.id }} {{ t.kind }} {{ t.status }} {{ t.resource }} {{ t.assigned_to or "—" }} {{ t.created_at or "—" }} {{ t.claimed_at or "—" }} {{ t.completed_at or "—" }}
{% else %}

No tasks{% if status != "all" %} with status “{{ status }}”{% endif %} in the queue.

{% endif %}
{% endblock %}