Welcome, {{ request.user.first_name|default:request.user.username }} (Preview)

This is the UI preview. Tutor onboarding + login will be connected later.

3
Pending Requests
5
Upcoming Sessions
12
Completed This Month
4.9
Rating (Preview)
Pending Requests
View all →
Student Subject Time Status Action
Student A Mathematics Tomorrow • 4:00 PM Awaiting
Student B GCSE English Friday • 6:00 PM Awaiting
Student C Python Basics Saturday • 1:00 PM Awaiting
Quick Actions

Real actions will be enabled after backend integration.

Assigned bookings
{% if bookings %}
{% for b in bookings %} {% endfor %}
# Service Student Subject/Exam Status Actions
{{ b.id }} {{ b.service }} {{ b.student.get_full_name|default:b.student.username }} {{ b.subject|default:b.exam|default:"-" }} {{ b.get_status_display }}
Chat {% if b.status == "assigned" %} {% elif b.status == "tutor_accepted" %} Accepted {% elif b.status == "tutor_declined" %} Declined {% endif %}
{% else %}

No assigned bookings yet.

{% endif %}