{% extends 'base.html' %} {% block title %}My Tickets - EventNest{% endblock %} {% block content %}

My Tickets

Find More Events
{% if tickets %}
{% for ticket in tickets %}
{% if ticket.status == 'confirmed' %}✓ {% elif ticket.status == 'cancelled' %}✕ {% endif %}{{ ticket.status|title }} {{ ticket.ticket_code }}

{{ ticket.event.title }}

📅 {{ ticket.event.start_date|date:"F d, Y" }} 🕐 {{ ticket.event.start_date|time:"g:i A" }} {% if ticket.event.city %}📍 {{ ticket.event.city }}{% endif %} 💵 {% if ticket.amount_paid > 0 %}₹{{ ticket.amount_paid }}{% else %}Free{% endif %}
View Event {% if ticket.status == 'confirmed' and ticket.event.is_upcoming %}
{% csrf_token %}
{% endif %} {{ ticket.created_at|date:"M d, Y" }}
{% endfor %}
{% else %}
🎯

No tickets yet

Register for events to see your tickets here

Explore Events
{% endif %} {% endblock %}