{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% load i18n %} {% block title %} {{ description }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}

{% trans "Search" %}

{% include 'partials/form_fields_inline.html' with form=form %} {% trans "Reset" %}

{% trans "Create a new voucher" %}

{% trans "Create new voucher" %}
{% if description != "All vouchers " %}
{{ description }}
{% endif %} {% if vouchers.count %} {% for voucher in vouchers %} {% endfor %}
{% trans "Name" %} {% trans "Code" %} {% trans "Is active?" %} {% trans "Num baskets" %} {% trans "Num orders" %} {% trans "Date created" %}
{{ voucher.name }} {{ voucher.code }} {{ voucher.is_active }} {{ voucher.num_basket_additions }} {{ voucher.num_orders }} {{ voucher.date_created }} {% trans "Stats" %} {% trans "Edit" %} {% trans "Delete" %}
{% include "partials/pagination.html" %} {% else %}

{% trans "No vouchers found." %}

{% endif %} {% endblock dashboard_content %}