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

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

{% if report.config %}

{% trans "Report configuration settings" %}

{% endif %}

{% trans 'Run this report with a new date range' %}

{% if report.runs %}

{% trans "Previous report runs" %}

{% for run in report.runs %} {% endfor %}
{% trans "Run ID" %} {% trans "Run Date" %} {% trans "Status" %} {% trans "Date Range" %} {% trans "Result" %}
{{ run.pk }} {{ run.create_dt|date:"SHORT_DATE_FORMAT" }} {{ run.status }} {{ run.range_start_dt|date:"SHORT_DATE_FORMAT" }} {% trans "to" %} {{ run.range_end_dt|date:"SHORT_DATE_FORMAT" }} {% if run.status == "complete" %}{{ run.output_type }}{% endif %}
{% endif %}

← {% trans "Back to All Reports page" %}

{% endblock body %}