{% extends "admin/base_reports.html" %} {% load admin_static reports_tags %} {% block bodyclass %}change-list{% endblock %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block coltype %}flex{% endblock %} {% block content %} {% include "django_spreadsheet_reports/report.js" %}

{{report_name}}

{% if table %} {% for column in table.columns %} {% endfor %} {% for row in table.rows %} {% for value in row %} {% endfor %} {% endfor %}
{% if column.sortable %}{{ column.name }}{% else %}{{column.name}}{% endif %}
{% display_column table value forloop.counter0 %}
{% endif %} {% if not table %}

No Data! Check for form errors.

{% endif %}

Report Settings

{{form.as_p}}

Note: Choices are only shown if there are records in the current query. It will often be necessary to loosen the filters in order to see all choices.

{% endblock %}