{% extends "django_program/manage/base.html" %} {% block title %}Vouchers{% endblock %} {% block page_title %}

Vouchers

Discount codes, comp tickets, and access vouchers

{% endblock %} {% block page_actions %} Add Voucher {% endblock %} {% block content %} {% if vouchers %} {% for voucher in vouchers %} {% endfor %}
Code Type Discount Uses Unlocks Hidden Status Actions
{{ voucher.code|truncatechars:8 }}**** {{ voucher.get_voucher_type_display }} {% if voucher.voucher_type == "comp" %} 100% off {% elif voucher.voucher_type == "percentage" %} {{ voucher.discount_value }}% off {% elif voucher.voucher_type == "fixed_amount" %} ${{ voucher.discount_value }} off {% endif %} {{ voucher.times_used }} / {{ voucher.max_uses }} {% if voucher.unlocks_hidden_tickets %} Yes {% else %} -- {% endif %} {% if voucher.is_active %} Active {% else %} Inactive {% endif %} Edit
{% else %}

No vouchers for this conference yet.

Add First Voucher

{% endif %} {% endblock %}