{% extends 'admin/index.html' %} {% block head %} {{ super() }} {% endblock %} {% block body %}

TaskTiger – {{ queue }} ({{ state }})

{% if task.ts %} {% endif %} {% if task.time_last_queued %} {% endif %} {% if "unique" in task_data %} {% endif %} {% if "unique_key" in task_data %} {% endif %}
ID {{ task_data.id }}
Func {{ task_data.func }}
Args {{ task_data.args }}
Kwargs {{ task_data.kwargs }}
Run At {{ task.ts.strftime("%Y-%m-%d %H:%M:%S") }}
Time Last Queued {{ task.time_last_queued.strftime("%Y-%m-%d %H:%M:%S") }}
Unique {{ task_data.unique }}
Unique Key {{ task_data.unique_key }}
Dump
Show/Hide
{{ task_data_dumped }}
{% if integrations %}

Links:

{% endif %} {% if executions_dumped %}

Executions

{% for execution_dumped, traceback, execution_integrations, execution in executions_dumped %} {% if execution_integrations %} {% endif %}
Exception Name {{ execution.exception_name }}
Host {{ execution.host }}
Success {{ execution.success }}
Time Failed {{ execution.time_failed.strftime("%Y-%m-%d %H:%M:%S") }}
Time Started {{ execution.time_started.strftime("%Y-%m-%d %H:%M:%S") }}
Execution Integrations
    {% for name, url in execution_integrations %}
  • {{ name }}
  • {% endfor %}
Traceback {% if loop.first %}
{% else %}
{% endif %} Show/Hide
{{ traceback }}
Dump
Show/Hide
{{ execution_dumped }}
{% endfor %} {% endif %} {% endblock %}