{% extends "base.html" %} {% load static %} {% load custom_tags_and_filters %} {% block extrahead %} {# Daterange picker #} {# Reports #} {% endblock %} {% block content %}

{{ report_title }}

{% if report_description %}

{{ report_description|safe }}

{% endif %}
{% if errors %}
Oops! Something went wrong. Please correct the errors highlighted below:
    {% for error in errors %}
  • {{ error }}
  • {% endfor %}
{% endif %} {% block report_form %}
{% block extra_options %}{% endblock %}
{% block extra_form %}{% endblock %}
{% button id="update_button" type="save" value="Update" submit=False %}
{% endblock %}
{% if not data.rows and not summary.rows %}
{% block empty_report %}There is no data to display. Try selecting a different date range{% endblock %}
{% else %}
{% block export %}
{% button id="export_button" type="export" value="Export" %}
{% endblock %} {% block report_content %} {% if summary.rows %}
{{ summary.to_html }}
{% endif %} {% if data.rows %}
{{ data.to_html }}
{% endif %} {% endblock %}
{% endif %}
{% endblock %}