{% extends "pretixcontrol/vouchers/base.html" %} {% load i18n %} {% block inside %}

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

{% 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" %}
{{ t.tag }} ({{ t.redeemed }} / {{ t.total }})
{% endif %} {% endblock %}