{% extends 'admin/base_site.html' %} {% block title %}Tickets{% endblock %} {% block page_title %}Ticket Management{% endblock %} {% block nav_tickets %}active{% endblock %} {% block content %}
Clear
{% for t in tickets %} {% empty %} {% endfor %}
Code Attendee Event Status Amount Registered Actions
{{ t.ticket_code }}
{{ t.attendee.username }}
{{ t.attendee.email }}
{{ t.event.title|truncatechars:28 }} {{ t.status|title }} {% if t.amount_paid > 0 %} ₹{{ t.amount_paid }} {% else %} Free {% endif %} {{ t.created_at|date:"M d, Y" }}
{% csrf_token %}
No tickets found.
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} ← Prev {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} • {{ page_obj.paginator.count }} total {% if page_obj.has_next %} Next → {% endif %}
{% endif %} {% endblock %}