{% extends 'base.html' %} {% block title %}Attendees - {{ event.title }}{% endblock %} {% block content %}
| # | Name | Ticket | Status | Paid | Date | |
|---|---|---|---|---|---|---|
| {{ 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" }} |
| No attendees yet. | ||||||