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

Tasks

Submit task to current Host

{% if submission_available %}



{% if submission_error %}

{{ submission_error }}

{% endif %} {% if submission_unknown %}

Submission outcome is unknown. The task may have been queued. Check the Cloud console before submitting again.

{% endif %} {% if submission_notice %}

{{ submission_notice }}

{% endif %}

{% else %}

Host submission client is not available yet. Wait for Host enrollment to complete, then refresh.

{% endif %}

Local Runtime tasks

{% if metadata_store_missing %}

Task metadata store is not configured.

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