{% 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 }} | {% 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 %} {% trans "Never" %} {% endif %} |
{# 2. Change Password Button (Key Icon) #}
{% trans 'Change Password' %}
{# 3. Delete Button (Trash Icon) #}
{% if user.is_active %}
{% else %}
{% endif %}
|
|
| {% trans "No staff users found." %} | |||||||