{% extends "core/base.html" %} {% load static %} {% block title %}Users - SwiftPOS{% endblock %} {% block topbar_title %}Users{% endblock %} {% block content %}
System Users
Manage managers, cashiers and admins.
Add User
{% for user in users %} {% empty %} {% endfor %}
Username Full Name Role Branch Status Last Login Actions
{{ user.username }} {{ user.get_full_name|default:user.username }} {{ user.get_role_display }} {% if user.branch %} {{ user.branch.name }} {% else %} No branch {% endif %} {% if user.is_active %} Active {% else %} Inactive {% endif %} {% if user.last_login %} {{ user.last_login|date:"Y-m-d H:i" }} {% else %} Never {% endif %} Edit
No users found.
{% endblock %}