{% extends 'base.html' %} {% block title %}Schedules{% endblock %} {% block topbar_title %}Schedule Management{% endblock %} {% block content %}

🗓️ Trips / Schedules

Create and manage the trips passengers can book.

➕ New trip
{% for s in schedules %} {% empty %} {% endfor %}
Route Bus Departure Fare Status Actions
{{ s.route.source_city.city_name }} → {{ s.route.destination_city.city_name }} {{ s.bus.bus_name }} {{ s.departure_time|date:"Y-m-d H:i" }} Rs. {{ s.fare }} {% if s.status == 'ACTIVE' %}ACTIVE {% elif s.status == 'CANCELLED' %}CANCELLED {% else %}{{ s.status }}{% endif %} {% if s.status == 'ACTIVE' %} Edit Cancel trip {% else %}{% endif %}
No trips yet.
{% endblock %}