{% extends 'dashboard/reports/index.html' %} {% load currency_filters %} {% load i18n %} {% block report %} {% if objects %} {% for offer_discount in objects %} {% endfor %}
{% trans "Offer" %} {% trans "Total discount" %}
{{ offer_discount.offer.name }} {{ offer_discount.total_discount|currency }}
{% if page_obj %} {% include "partials/pagination.html" %} {% endif %} {% else %}

{% trans "No results found." %}

{% endif %} {% endblock %}