{% extends "pretixcontrol/organizers/base.html" %} {% load i18n %} {% load bootstrap3 %} {% load money %} {% block inner %}

{% trans "Issued gift cards" %}

{% if giftcards|length == 0 and not filter_form.filtered %}

{% blocktrans trimmed %} You haven't issued any gift cards yet. You can either set up a product in an event shop to sell gift cards, or you can manually issue gift cards. {% endblocktrans %}

{% trans "Manually issue a gift card" %}
{% else %}
{% bootstrap_field filter_form.query layout='inline' %}

{% trans "Manually issue a gift card" %}

{% for g in giftcards %} {% endfor %}
{% trans "Gift card code" %} {% trans "Creation date" %} {% trans "Current value" %}
{{ g.secret }} {{ g.issuance|date:"SHORT_DATETIME_FORMAT" }} {{ g.cached_value|money:g.currency }}
{% include "pretixcontrol/pagination.html" %} {% endif %} {% endblock %}