{% extends "base.html" %} {% load i18n static %} {% block body %}
{{ report.label }}
{% trans "Status:" %} {{ report.get_workflow_state_display }}
{% trans "Queued at:" %} {{ report.queued_at }}
{% if report.workflow_state > 0 %}
{% trans "Started at:" %} {{ report.queued_at }}
{% endif %} {% if report.workflow_state > 1 %}
{% trans "Ended at:" %} {{ report.done_at }}
{% endif %}
{{ report.messages|linebreaks }}
{% endblock %}