{% extends "pretixcontrol/items/base.html" %} {% load i18n %} {% block title %}{% trans "Vouchers" %}{% endblock %} {% block inside %}

{% trans "Vouchers" %}

{% trans "Create a new voucher" %}

{% for v in vouchers %} {% endfor %}
{% trans "Voucher code" %} {% trans "Is redeemed" %} {% trans "Expiry" %} {% trans "Product" %}
{{ v.code }} {% if v.redeemed %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %} {{ v.valid_until|date }} {{ v.item }}
{% include "pretixcontrol/pagination.html" %} {% endblock %}