{% extends 'base.html' %} {% block title %}Operator Dashboard{% endblock %} {% block content %}

๐Ÿ“Š Operator Dashboard

{% if not operator %}
No operator profile found for your account. Please contact the admin.
{% else %} {% if not operator.verified %}
โณ {{ operator.company_name }} is PENDING_VERIFICATION. You cannot publish live schedules until an administrator approves your account.
{% else %}

โœ… {{ operator.company_name }} โ€” approved & active.

{% endif %}
{{ today_trip_count }}
Today's trips
{{ total_bookings }}
Total bookings
Rs. {{ gross }}
Gross revenue
Rs. {{ net }}
Net (after commission)
{{ occupancy }}%
Seat occupancy

Platform commission paid: Rs. {{ commission }}  ยท  Buses: {{ approved_bus_count }}/{{ bus_count }} approved  ยท  Active trips: {{ active_trip_count }} ({{ booked_seats }}/{{ total_seats }} seats booked)

Today's trips

{% for s in today_trips %} {% empty %} {% endfor %}
Route Bus Departure Fare Status
{{ s.route.source_city.city_name }} โ†’ {{ s.route.destination_city.city_name }} {{ s.bus.bus_name }} {{ s.departure_time|date:"H:i" }} Rs. {{ s.fare }} {{ s.status }}
No trips scheduled for today.
Manage my buses โ†’ {% endif %} {% endblock %}admin_dashboard