{% extends 'base.html' %} {% block title %}Bus Approvals{% endblock %} {% block content %}

🔍 Bus approvals

Approve a bus to make it bookable, or decline it with a reason the operator will see.

Waiting for review

{% for bus in pending %} {% empty %} {% endfor %}
ID Bus Reg. No Type Seats Operator Decision
{{ bus.id }} {{ bus.bus_name }} {{ bus.registration_no }} {{ bus.bus_type }} {{ bus.total_seats }} {{ bus.operator.company_name }}
{% csrf_token %}

Nothing waiting for review.

Recently reviewed

{% for bus in reviewed %} {% empty %} {% endfor %}
Bus Operator Status Note Reviewed at
{{ bus.bus_name }} {{ bus.operator.company_name }} {% if bus.approval_status == 'APPROVED' %} APPROVED {% else %} DECLINED {% endif %} {{ bus.review_note|default:"—" }} {{ bus.reviewed_at|date:"Y-m-d H:i" }}
No buses reviewed yet.
{% endblock %}