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

Admin Dashboard

{{ technician_count }}

Active Technicians

{{ service_count }}

Active Services

{{ stats_this_month.total }}

Bookings This Month

{{ stats_this_month.no_shows }}

No-Shows This Month

Recent Bookings

{% for booking in recent_bookings %} {% endfor %}
ID Client Service Technician Date & Time Status
#{{ booking.id }} {{ booking.client.name }} {{ booking.service.name }} {{ booking.technician.name }} {{ format_date(booking.booking_date) }} {{ format_time(booking.booking_time) }} {{ booking.status }}
{% if recent_no_shows %}

Recent No-Shows

{% for noshow in recent_no_shows %} {% endfor %}
Client Service Technician Scheduled Marked At
{{ noshow.client.name }} {{ noshow.service.name }} {{ noshow.technician.name }} {{ format_date(noshow.scheduled_date) }} {{ format_time(noshow.scheduled_time) }} {{ format_datetime(noshow.marked_at) }}
{% endif %}
{% endblock %}