{% extends 'base.html' %} {% block title %}Schedule Analysis - Yatra Booking System{% endblock %} {% block content %}
Manually test schedule creation, timing validation, and fare calculation functionality.
| ID | Route | Bus | Departure | Arrival | Fare | Status |
|---|---|---|---|---|---|---|
| {{ schedule.id }} |
{{ schedule.route.source_city.city_name }} → {{ schedule.route.destination_city.city_name }} |
{{ schedule.bus.bus_name|default:schedule.bus.registration_no|default:"N/A" }} | {{ schedule.departure_time|date:"M d, Y H:i" }} | {{ schedule.arrival_time|date:"M d, Y H:i" }} | Rs. {{ schedule.fare|floatformat:2 }} | {{ schedule.status }} |
Your database doesn't contain any schedule records yet.
Schedules will appear here once operators create bus timings through your application.