{% extends "hobo/applications/versions.html" %} {% load i18n %} {% block appbar %}

{{ object.label }}

{% endblock %} {% block content %} {% if object.status == 'failed' %}
{% if object.exception %} {% if object.exception_details %}

{{ object.exception }}

{{ object.exception_details }}
{% else %}

{% trans "Error running the job." %}

{{ object.exception }}
{% endif %} {% endif %}

{% trans "Back" %}

{% else %}

{% trans "Please wait…" %}

{% for service, progression in job_progression.items %}
{{ service }}
{{ service_job_status_choices|get:progression.data.status }}: {{ progression.data.completion_status|default:'' }}
{% endfor %}
{% endif %} {% endblock %}