Travel Bookings
| ID |
Sender |
Traveler |
Travelling from |
Travelling to |
Action |
{% if route_obj %}
{% for doctor in route_obj %}
| {{ doctor.id }} |
{{ doctor.requests.sender.full_name }}
|
{{ doctor.requests.traveller.full_name }}
|
{{ doctor.requests.route.travelling_from }} |
{{ doctor.requests.route.travelling_to }} |
|
{% endfor %}
{% else %}
| No data found |
{% endif %}
{% if route_obj %}
{% endif %}