{% extends "body_base.html" %} {% block main %}

Active Tasks

{% if not jobs %}
No active tasks
{% else %}
{% for job in jobs %} {% if job.status == "Created" or job.status is mapping and job.status.InProgress %}
{% if job.content.Url %}

URL Task

{{ job.content.Url.url }}

{% elif job.content.File %}

File Task

{{ job.content.File.file_info.path }}

{% elif job.content.Text %}

Text Task

{{ job.content.Text.text }}

{% endif %}

Status: {% if job.status == "Created" %} Created {% elif job.status.InProgress %} In Progress {% endif %}

{% if job.status.InProgress %}

Attempts: {{ job.status.InProgress.attempts }}

Last Attempt: {{ job.status.InProgress.last_attempt }}

{% endif %}

Category: {% if job.content.Url %} {{ job.content.Url.category }} {% elif job.content.File %} {{ job.content.File.category }} {% elif job.content.Text %} {{ job.content.Text.category }} {% endif %}

{% endif %} {% endfor %}
{% endif %}
{% endblock %}