{% extends "tenant/layouts/base.html" %} {% block title %}Staff Portal{% endblock %} {% block content %}

Welcome, {{ staff.name }}

{{ today.strftime('%A, %B %d') }}
{% if current_clocking %} On Shift Since {{ current_clocking.clocked_in_at.strftime('%I:%M %p') }} {% else %} Off Shift {% endif %}
{% if current_clocking %}
{% else %}
{% endif %}
Today's Appointments Full Schedule
{% if todays_appointments %}
{% for a in todays_appointments %} {% endfor %}
TimeCustomerServiceStatus
{{ a.start_time.strftime('%I:%M %p') }} {{ a.customer.name if a.customer else 'Walk-in' }} {{ a.service.name if a.service else '—' }} {{ a.status }}
{% else %}
No appointments scheduled for today.
{% endif %}
Commission & Pay
My Profile
{% endblock %}