{% extends 'oscar/dashboard/layout.html' %} {% load currency_filters %} {% load sorting_tags %} {% load i18n %} {% block title %} {{ description }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %} {% if description != "All voucher sets" %} {% endif %} {% if voucher_sets %} {% for voucher_set in voucher_sets %} {% endfor %} {% else %} {% endif %}
{{ description }}
{% trans "Name" %} {% trans "Num" %} {% trans "Status" %} {% trans "Num offers" %} {% anchor 'num_basket_additions' _("Num baskets") %} {% anchor 'num_orders' _("Num orders") %} {% anchor 'date_created' _("Date created") %}
{{ voucher_set.name }} {{ voucher_set.count }} {% if voucher_set.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} {{ voucher_set.vouchers.first.offers.count|default:0 }} {{ voucher_set.num_basket_additions }} {{ voucher_set.num_orders }} {{ voucher_set.date_created }}
{% trans "No voucher sets found." %}
{% include "oscar/partials/pagination.html" %} {% endblock dashboard_content %}