{% extends "base.html" %} {% block title %}Technician Dashboard | NailTech Nation{% endblock %} {% block content %}

Welcome, {{ technician.name }}! 💼

Your appointments and schedule

📅

{{ stats.total }}

Total Bookings

{{ stats.completed }}

Completed

{{ stats.active }}

Active

{{ stats.no_shows }}

No-Shows

Select Date

Schedule for {{ format_date(selected_date) }}

{% if bookings_today %}
{% for booking in bookings_today %}
{{ format_time(booking.booking_time) }}
2h 30m

{{ booking.service.name }}

Client: {{ booking.client.name }}

📱 {{ booking.client.phone }}

{{ booking.status|title }}

KES {{ booking.service.price }}

{% if booking.status == 'active' %}
{% endif %}
{% endfor %}
{% else %}

No Bookings

You have no appointments scheduled for this day

{% endif %}
{% if upcoming_bookings %}

Upcoming Appointments

{% for booking in upcoming_bookings[:6] %}
{{ format_date(booking.booking_date) }}
{{ format_time(booking.booking_time) }}
{{ booking.service.name }}
{{ booking.client.name }}
{% endfor %}
{% endif %}
{% endblock %}