{% extends "base.html" %} {% block title %}Tasks · Apex Console{% endblock %} {% block body %} Tasks {{ tasks|length }} task(s) match the current filters Task List Device All devices {% for device in devices %} {{ device.name or device.id }} {% endfor %} Status All statuses {% for status_name in task_statuses %} {{ status_name }} {% endfor %} Apply {% if not tasks %} No tasks match the current filters. {% else %} {% for task in tasks %} {{ task.goal }} {{ device_names.get(task.device_id, task.device_id) }} {{ task.status }} {% endfor %} {% endif %} {% endblock %}
{{ tasks|length }} task(s) match the current filters