{% extends 'oscar/dashboard/reports/index.html' %} {% load currency_filters %} {% load i18n %} {% block report %} {% if objects %} {% for voucher in objects %} {% endfor %} {% else %} {% endif %}
{% trans "Voucher code" %} {% trans "Added to a basket" %} {% trans "Used in an order" %} {% trans "Total discount" %}
{{ voucher.code }} {{ voucher.num_basket_additions }} {{ voucher.num_orders }} {{ voucher.total_discount|currency }}
{% trans "No vouchers were used in this period" %}
{% include "oscar/dashboard/partials/pagination.html" %} {% endblock %}