{% load i18n %}
{% for voucher in vouchers %} {% endfor %}
{% trans "Number" %} {% trans "Type" %} {% trans "Value" %} {% trans "Tax" %} {% trans "Expiration date" %} {% trans "Active" %} {% trans "Used" %} {% trans "Used date" %}
{% if not voucher.used %} {% endif %} {{ voucher.number }} {{ voucher.get_kind_of_display }} {{ voucher.value }} {% if voucher.tax %} {{ voucher.tax.rate }} % {% else %} --- {% endif %} {% if voucher.expiration_date %} {{ voucher.expiration_date }} {% else %} --- {% endif %} {{ voucher.active }} {{ voucher.used }} {{ voucher.used_date|date:_("DATE_FORMAT") }}
{% if vouchers %} {% endif %}

{% trans "Add vouchers" %}

: : : :