{% extends "base.html" %} {% block title %}Select Time | NailTech Nation{% endblock %} {% block content %}

Select Date & Time

{{ service.name }} with {{ technician.name }} - KES {{ service.price }}

✓ Service
✓ Technician
3. Time
4. Confirm

Choose a Date

Available Times for {{ format_date(selected_date) }}

{% if is_fully_booked %}

Fully Booked

{{ technician.name }} is fully booked on this date.

{% if next_available %}

Next available: {{ format_date(next_available.date) }} at {{ format_time(next_available.time) }}

View Next Available {% else %}

No availability in the next 14 days. Please try another technician.

{% endif %}
{% else %}
{% for slot in available_slots %} {% endfor %}
← Back
{% endif %}
{% endblock %}