{% extends "pretixcontrol/event/base.html" %} {% load i18n %} {% load bootstrap3 %} {% block title %}{% trans "Voucher tags" %}{% endblock %} {% block content %}

{% trans "Voucher tags" %}

{% blocktrans trimmed %} If you add a "tag" to a voucher, you can here see statistics on their usage. {% endblocktrans %}

{% if request.event.has_subevents %}
{% bootstrap_field filter_form.subevent layout='inline' %}
{% endif %} {% if tags|length == 0 %}

{% blocktrans trimmed %} You haven't added any tags to vouchers yet. {% endblocktrans %}

{% else %}
{% for t in tags %} {% endfor %}
{% trans "Tag" %} {% trans "Redeemed vouchers" %}
{% if t.tag %} {{ t.tag }} {% else %} '|urlencode }}"> {% trans "Empty tag" %} {% endif %} ({{ t.redeemed }} / {{ t.total }})
{% endif %} {% endblock %}