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

{% trans "Voucher" %}

{% if voucher.redeemed %}
{% trans "This voucher already has been used. It is not recommended to modify it." %}
{% endif %}
{% csrf_token %} {% bootstrap_form_errors form %}
{% trans "Voucher details" %} {% bootstrap_field form.code layout="horizontal" %} {% bootstrap_field form.valid_until layout="horizontal" %} {% bootstrap_field form.block_quota layout="horizontal" %} {% bootstrap_field form.allow_ignore_quota layout="horizontal" %} {% bootstrap_field form.price layout="horizontal" %} {% bootstrap_field form.itemvar layout="horizontal" %}
{% endblock %}