{% extends "base.html" %} {% block title %}Tasks · Apex Console{% endblock %} {% block body %}

Tasks

{{ tasks|length }} task(s) match the current filters

Task List

{% 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 %}