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

{% trans "Vouchers" %}

{% blocktrans trimmed %} Vouchers allow you to assign tickets to specific persons for a lower price. They also enable you to reserve some quota for your very special guests. {% endblocktrans %}

{% if vouchers|length == 0 %}

{% blocktrans trimmed %} You haven't created any vouchers yet. {% endblocktrans %}

{% trans "Create a new voucher" %}
{% else %}

{% 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 }} {% if v.item %} {{ v.item }} {% else %} {% blocktrans trimmed with quota=v.quota.name %} Any product in quota "{{ quota }}" {% endblocktrans %} {% endif %}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}