{% extends 'oscar/dashboard/reports/index.html' %} {% load dashboard_tags %} {% load i18n %} {% load render_table from django_tables2 %} {% block dashboard_content %}

{% trans "Reporting dashboard" %}

{% csrf_token %} {% include "oscar/dashboard/partials/form_fields_inline.html" with form=form %}
{% block report_list %} {% if reports.data %} {% render_table reports %} {% else %}
{{ queryset_description }}
{% trans "No reports found." %}
{% endif %} {% endblock %} {% if description %}

{{ description }}

{% endif %} {% block report %} {% endblock %} {% endblock dashboard_content %}