{% extends "base.html" %} {% block body %}

Tasks

{% if not tasks %}

No tasks recorded.

{% else %} {% for task in tasks %} {% endfor %}
Task IDStatusDeviceCreatedUpdated
{{ task["id"] }} {{ task.get("status") or "" }} {{ task.get("device_id") or "" }} {{ task.get("created_at") or "" }} {{ task.get("updated_at") or "" }}
{% endif %} {% endblock %}