{% extends 'base.html' %} {% block title %}Task - {{task.job_type.name}}{% endblock %} {% block scripts %} {% load staticfiles %} {% endblock %} {% block header %}

Priority{{task.priority}}

{% if perms.web.edit_task %} {% endif%}

{{task.job_type.name}}

{% endblock %} {% block breadcrumb %}
  • Home /
  • {{task.site.name}}/
  • {{task.job_type.name}}
  • {% endblock %} {% block content %}

    Description

    {{task.job_type.description}}

    Task Status

    {{task.status_display}} {{started}}

    {% if progress %}

    Once you have completed the the task click the button below.

    {% csrf_token %}
    {% elif validate_button %}
    {% csrf_token %}

    Once you have validated the task click the button below

    {% elif failed_button %}
    {% csrf_token %}

    Once the problem has been fixed restart the task below

    {% endif %}

    Task File Manager

    {% if server_task %} {% else %}
    {% csrf_token %}
    {% csrf_token %} Output Folder:{{ task.output_folder }}
    {% endif %} Input Files:
    {{ file_interface|safe }}

    Task Output Log

    {{ task.log }}
    {% endblock %}