{% extends 'base.html' %} {% block title %}Booking Testing - Yatra Booking System{% endblock %} {% block content %}
Manually test booking process, payment integration, and ticket generation functionality.
Loading booking data...
| Booking Code | Passenger | Route | Bus | Amount | Status | Booked Date |
|---|---|---|---|---|---|---|
| {{ booking.booking_code }} | {{ booking.user.full_name }} | {{ booking.schedule.route.source_city.city_name }} → {{ booking.schedule.route.destination_city.city_name }} | {{ booking.schedule.bus.bus_name|default:booking.schedule.bus.registration_no|default:"N/A" }} | Rs. {{ booking.total_amount|floatformat:2 }} | {{ booking.booking_status }} | {{ booking.booked_at|date:"M d, Y H:i" }} |
📭 No Bookings FoundYour database doesn't contain any booking records yet. Bookings will appear here when customers make reservations through your application. |
||||||