{% extends 'admin/base_site.html' %} {% block title %}Attendees{% endblock %} {% block page_title %}Attendees - {{ event.title|truncatechars:30 }}{% endblock %} {% block nav_events %}active{% endblock %} {% block topbar_actions %} ← Back to Event {% endblock %} {% block content %}
{% for t in tickets %} {% empty %} {% endfor %}
#UserEmailTicket CodeStatusPaidRegisteredCreated By
{{ forloop.counter }} {{ t.attendee.get_full_name|default:t.attendee.username }} {{ t.attendee.email }} {{ t.ticket_code }} {{ t.status|title }} {% if t.amount_paid > 0 %}₹{{ t.amount_paid }}{% else %}Free{% endif %} {{ t.created_at|date:"M d, Y" }} {{ t.created_by.username|default:"-" }}
No attendees yet.
{% endblock %}