{% extends 'admin_base_layout.html' %} {% load static %} {% block content %} Manimaran | Booking List

Bookings List

Bookings List

{% if book_obj %} {% for booking in book_obj %} {% endfor %}

Customer Name

ServiceProvider Name

Booking Date

Category

Total Price

Status

Action

{{booking.user.first_name}} {{booking.user.last_name}}
{{booking.worker.first_name}} {{booking.worker.last_name}}
{{booking.booking_date}} ({{booking.booking_time}})
{{booking.sub_services.name}} £ {{booking.total_amount}}
{{booking.booking_status}}
{% else %}

No data found.

{% endif %}
{% if book_obj %}
{% endif %}
{% endblock %}