{% extends "base.html" %} {% load static %} {% load i18n %} {% load humanize %} {% block title %}{% trans "Admin Settings" %} - KAAUH ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "ID" %} | {% trans "Full Name" %} | {% trans "Email" %} | {% trans "Status" %} | {% trans "First Join" %} | {% trans "Last Login" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
| {{ user.pk }} | {{ user.get_full_name|default:user.first_name }} | {{ user.email }} | {# Column: Status Badge (Improved Styling) #}{% if user.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %} | {# Column: First Join Date #}{{ user.date_joined|date:"d M Y" }} | {# Column: Last Login Date #}{% if user.last_login %} {{ user.last_login|naturaltime }} {% else %} — {% endif %} | {# Column: Actions #}|
| {% trans "No staff users found." %} | ||||||