{% 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" %}
| Name | Username | Role | Phone | Active | Created | Actions | |
|---|---|---|---|---|---|---|---|
| {{ 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 %} |