{% extends 'django_spire/page/full_page.html' %} {% load variable_types %} {% block full_page_command_bar %}
Browse
{% endblock %} {% block full_page_sub_navigation_title %} Reports {% endblock %} {% block full_page_sub_navigation %} {% if not report.is_ready %}
{% include 'django_spire/metric/report/element/report_sub_navigation_element.html' with depth=0 sub_nav_value=registry.report_names_classes %}
{% endif %} {% endblock %} {% block full_page_content %} {% if report %} {% if report.is_ready %} {% include 'django_spire/metric/report/print/report_print.html' %} {% else %} {% include 'django_spire/metric/report/form/report_form.html' %} {% endif %} {% else %}
Top 10 Reports
{% for report_run in top_ten_report_runs %}
{{ report_run.report_key_stack_verbose }}
{{ report_run.run_count }} Total Runs
{% endfor %} {% endif %} {% endblock %}