{% extends "base.html" %} {% block title %}My Bookings | NailTech Nation{% endblock %} {% block content %}

My Bookings

Active Appointments

{% if active_bookings %}
{% for booking in active_bookings %}
#{{ booking.id }} Active

{{ booking.service.name }}

KES {{ booking.service.price }}

{{ format_date(booking.booking_date) }}
{{ format_time(booking.booking_time) }}
{{ booking.technician.name }}
{% set countdown_info = countdowns.get(booking.id) %} {% if countdown_info %} {% if countdown_info.in_grace_period %}
⚠️ {{ countdown_info.minutes_remaining }} minutes grace period
{% else %}
⏱ {{ countdown_info.hours_until }}h {{ countdown_info.minutes_until }}m until appointment
{% endif %} {% endif %}
{% endfor %}
{% else %}

No Active Bookings

You don't have any upcoming appointments

Book Now
{% endif %}

Booking History

{% if past_bookings %}
{% for booking in past_bookings %}
#{{ booking.id }} {{ booking.status|title }}

{{ booking.service.name }}

KES {{ booking.service.price }}

{{ format_date(booking.booking_date) }}
{{ format_time(booking.booking_time) }}
{{ booking.technician.name }}
{% endfor %}
{% else %}

No booking history yet

{% endif %}
{% endblock %}