{% extends extend_str %} {% load crispy_forms_tags %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% block content %} {% if header %}

{{ header }}


{% endif %} {% if sub_header %}

{{ sub_header }}


{% endif %} {% if form%}

{{ form_header }}

{% crispy form %} {% endif %} {% if filter %}

{{ filter_header }}

Filter Results

{% crispy filter.form %}
{% endif %} {% if agg_table %}

{{ agg_table_header }}

{% render_table agg_table %} {% endif %} {% if fig %} {{ fig|safe }} {% endif %} {% if not plot_df.empty %} Plot Data Frame
{{ plot_df.to_html|safe }}
{% endif %}
{% if export %} {% endif %} {% if export_csv %} {% endif %} {% if url1 %}
{{ url1_text }}
{% endif %} {% if url2 %}
{{ url2_text }}
{% endif %} {% if url3 %}
{{ url3_text }}
{% endif %} {% if furl1 %}
{{ furl1_text }}
{% endif %} {% if furl2 %}
{{ furl2_text }}
{% endif %} {% if furl3 %}
{{ furl3_text }}
{% endif %}
{% if submit_buttons %}
{% csrf_token %} {% for sb in submit_buttons %} {% endfor %} {% render_table table %}
{% else %} {% if table %}

{{ table_header }}

{% render_table table %} {% endif %} {% endif %} {% if plot1 %}
{{ plot1|safe }}
{% endif %} {% if detail_header %}

{{ detail_header }}


{% endif %} {% if object.as_html %} {% if show_as_html %} {{ object.as_html }} {% endif %} {% endif %} {% endblock content %}