{% extends 'base.html' %} {% block title %}My Buses{% endblock %} {% block content %}
✅ Your operator account is approved by the admin.
➕ Add a new bus {% else %}| ID | Bus | Reg. No | Type | Seats | Review status | Admin's note | Actions |
|---|---|---|---|---|---|---|---|
| {{ bus.id }} | {{ bus.bus_name }} | {{ bus.registration_no }} | {{ bus.bus_type }} | {{ bus.total_seats }} | {% if bus.approval_status == 'APPROVED' %} APPROVED {% elif bus.approval_status == 'REJECTED' %} DECLINED {% else %} PENDING {% endif %} | {{ bus.review_note|default:"—" }} | {% if bus.approval_status == 'APPROVED' %} Locked {% else %} ✏️ Edit {% endif %} |
| You have not added any buses yet. | |||||||