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

Ticket Types

Manage ticket categories, pricing, and availability

{% endblock %} {% block page_actions %} Add Ticket Type {% endblock %} {% block content %} {% if ticket_types %} {% for tt in ticket_types %} {% endfor %}
Name Price Quantity Sold Voucher Required Status Actions
{{ tt.name }} ${{ tt.price }} {% if tt.total_quantity %}{{ tt.total_quantity }}{% else %}Unlimited{% endif %} {{ tt.sold_count }} {% if tt.requires_voucher %} Yes {% else %} -- {% endif %} {% if tt.is_active %} Active {% else %} Inactive {% endif %} Edit
{% else %}

No ticket types for this conference yet.

Add First Ticket Type

{% endif %} {% endblock %}