{% extends 'reports/report_base.html' %} {% load i18n %} {% block title %}{% trans 'Report' %} {{ run.report.pk }} - {{ run.report.type|title }} - {% trans 'Run' %} {{ run.pk }}{% endblock title %} {% block body %}

{% trans 'Report' %} {{ run.report.pk }} - {{ run.report.type|title }} - {% trans 'Run' %} {{ run.pk }}

{% trans 'Range' %}: {{ run.range_start_dt|date:"SHORT_DATE_FORMAT" }} {% trans 'to' %} {{ run.range_end_dt|date:"SHORT_DATE_FORMAT" }}
{% trans 'Status' %}: {{ run.status }}
{% if not run.complete_dt %}* this page auto-reloads until the report is complete{% endif %}

{% if run.status == "complete" %}

{% trans 'View Report Output' %} ({{ run.output_type }})

{% endif %}

← {% trans "Back to Report page" %}

{% endblock body %} {% block extra_body %} {{ block.super }} {% if not run.complete_dt %} {% endif %} {% endblock extra_body %}