{% extends "base.html" %} {% load i18n %} {% block header_extra %} {% if state != "FAILURE" and state != "SUCCESS" %} {% endif %} {% endblock %} {% block content %}

{% trans "Task Progress" %}

{% if progress_statement %} {% endif %}
{% trans "State" %} {{ state }}
{% trans "Progress" %} {{ progress_statement }}
{% if progress_percent != None %}
{{ progress_percent|floatformat:0 }}%
{% else %}
{% endif %} {% if traceback %} {% blocktrans trimmed %} The process failed and reported the following error: {% endblocktrans %}
{{  traceback }}
{% endif %} {% endblock %}