{% extends "base.html" %} {% block title %}Staff{% endblock %} {% block page_title %}Staff Management{% endblock %} {% block page_subtitle %}Manage DryClean360 staff accounts{% endblock %} {% block content %} {% include "partials/breadcrumb.html" %}
Add Staff
{% if page_obj.object_list %}
{% for profile in page_obj %} {% endfor %}
NameUsernameEmailRole PhoneActiveCreatedActions
{{ profile.user.get_full_name|default:"—" }} {{ profile.user.username }} {{ profile.user.email }} {{ profile.get_role_display }} {{ profile.phone_number|default:"—" }} {% if profile.active %}Yes{% else %}No{% endif %} {{ profile.created_at|date:"d M Y" }} Edit {% if profile.active %} Deactivate {% endif %}
{% else %} {% include "partials/empty_state.html" with title="No staff found" action_url="/accounts/staff/create/" action_label="Add Staff" %} {% endif %}
{% include "partials/pagination.html" %} {% endblock %}