{% extends "base.html" %} {% block title %}Manage Bookings | Admin{% endblock %} {% block content %}

All Bookings

{% for booking in bookings %} {% endfor %}
ID Client Phone Service Technician Date Time Price Status
#{{ booking.id }} {{ booking.client.name }} {{ booking.client.phone }} {{ booking.service.name }} {{ booking.technician.name }} {{ format_date(booking.booking_date) }} {{ format_time(booking.booking_time) }} KES {{ booking.service.price }} {{ booking.status }}
{% if not bookings %}

No bookings found with the selected filters

{% endif %}
{% endblock %}