{% extends 'base.html' %} {% block title %}My Buses{% endblock %} {% block content %}

🚌 My Buses

{% if operator %} {% if operator.verified %}

✅ Your operator account is approved by the admin.

➕ Add a new bus {% else %}
⏳ Your operator account ({{ operator.company_name }}) is waiting for admin approval. You can add buses once the admin gives you access.
{% endif %} {% else %}
No operator profile found for your account. Please contact the admin.
{% endif %}
{% for bus in buses %} {% empty %} {% endfor %}
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.
{% endblock %}