245 lines
9.6 KiB
HTML
245 lines
9.6 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
{% load humanize %}
|
|
|
|
{% block title %}{% trans "Admin Settings" %} - KAAUH ATS{% endblock %}
|
|
{% block customCSS %}
|
|
|
|
<style>
|
|
/* Theme Variables for Consistency */
|
|
:root {
|
|
--kaauh-teal: #00636e;
|
|
--kaauh-teal-dark: #004a53;
|
|
--kaauh-light-bg: #f9fbfd;
|
|
/* Standard Bootstrap color overrides (for pagination/badges) */
|
|
--color-primary: var(--kaauh-teal);
|
|
--color-primary-dark: var(--kaauh-teal-dark);
|
|
--color-background-light: #f4f6f9; /* Retaining this lighter shade for page background */
|
|
}
|
|
|
|
/* Layout & Card Styling */
|
|
|
|
.dashboard-header {
|
|
color: var(--color-primary-dark);
|
|
border-bottom: 1px solid #e9ecef;
|
|
padding-bottom: 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
/* Standard Accent Colors/Icons */
|
|
.text-accent {
|
|
color: var(--color-primary) !important;
|
|
}
|
|
.feature-icon {
|
|
font-size: 2.5rem;
|
|
color: var(--color-primary);
|
|
margin-bottom: 1rem;
|
|
}
|
|
.feature-title {
|
|
color: var(--color-primary-dark);
|
|
font-weight: 600;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
/* Table Specific Styling */
|
|
.table-card {
|
|
background-color: #ffffff;
|
|
border-radius: 0.75rem;
|
|
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
|
|
padding: 1.5rem;
|
|
}
|
|
/* Adjusted table stripe color to use theme variable */
|
|
.table-striped > tbody > tr:nth-of-type(odd) > * {
|
|
background-color: rgba(0, 99, 110, 0.05); /* Light kaauh-teal stripe */
|
|
}
|
|
.page-link {
|
|
color: var(--color-primary-dark);
|
|
}
|
|
.page-item.active .page-link {
|
|
background-color: var(--color-primary) !important;
|
|
border-color: var(--color-primary) !important;
|
|
color: #fff;
|
|
}
|
|
|
|
/* Action button container for better alignment and spacing */
|
|
.action-btns {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 5px; /* Small space between icons */
|
|
}
|
|
|
|
/* --- Main Action Button Style (Teal Theme) --- */
|
|
.btn-main-action {
|
|
/* Use standard Bootstrap button styles as a base */
|
|
background-color: var(--kaauh-teal);
|
|
border: 1px solid var(--kaauh-teal);
|
|
color: white;
|
|
font-weight: 600;
|
|
transition: all 0.2s ease;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 0.5rem; /* Standard Bootstrap gap for icon/text */
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 0.375rem; /* Standard Bootstrap border radius */
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Functional Hover State */
|
|
.btn-main-action:hover {
|
|
background-color: var(--kaauh-teal-dark);
|
|
border-color: var(--kaauh-teal-dark);
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
/* Active/Focus State (optional but good for accessibility) */
|
|
.btn-main-action:focus,
|
|
.btn-main-action:active {
|
|
box-shadow: 0 0 0 0.25rem rgba(0, 99, 110, 0.5); /* Teal focus ring */
|
|
background-color: var(--kaauh-teal-dark);
|
|
border-color: var(--kaauh-teal-dark);
|
|
color: white;
|
|
}
|
|
|
|
button i.fa-solid {
|
|
/* Re-enable display if it was hidden */
|
|
display: inline-block;
|
|
/* Ensure the correct font family is applied */
|
|
font-family: "Font Awesome 6 Free";
|
|
/* Inherit button color */
|
|
color: inherit;
|
|
}
|
|
.text-primary{
|
|
color:var(--kaauh-teal) !important;
|
|
|
|
}
|
|
|
|
</style>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container-fluid mt-5">
|
|
<div class="row px-lg-4">
|
|
<div class="col-12">
|
|
<h1 class="h3 fw-bold dashboard-header">
|
|
<i class="fas fa-cogs me-2 text-accent"></i>{% trans "Admin Settings Dashboard" %}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
|
|
{# --- Paged User Table Section --- #}
|
|
<div class="row px-lg-4" id="user-list">
|
|
|
|
<div class="d-flex align-items-center justify-content-between mb-3">
|
|
|
|
<h4 class="text-secondary fw-bold mb-0">{% trans "Staff User List" %}</h4>
|
|
|
|
{# 1. Create User Button - Using the enhanced btn-main-action class #}
|
|
<a href="{% url 'create_staff_user' %}" class="btn btn-main-action">
|
|
<i class="fas fa-user-plus"></i>{% trans "Create New User" %}
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-12 table-card">
|
|
<div class="table-responsive">
|
|
<table class="table table-striped table-hover align-middle mb-0">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">{% trans "ID" %}</th>
|
|
<th scope="col">{% trans "Full Name" %}</th>
|
|
<th scope="col">{% trans "Email" %}</th>
|
|
<th scope="col" class="text-center">{% trans "Status" %}</th>
|
|
<th scope="col" class="text-center">{% trans "First Join" %}</th>
|
|
<th scope="col" class="text-center">{% trans "Last Login" %}</th>
|
|
<th scope="col" class="text-center">{% trans "Actions" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for user in staffs %}
|
|
<tr>
|
|
<td>{{ user.pk }}</td>
|
|
<td>{{ user.get_full_name|default:user.first_name }}</td>
|
|
<td>{{ user.email }}</td>
|
|
<td class="text-center">
|
|
{% if user.is_active %}
|
|
<span class="badge rounded-pill bg-success-subtle text-success border border-success-subtle">{% trans "Active" %}</span>
|
|
{% else %}
|
|
<span class="badge rounded-pill bg-secondary-subtle text-secondary border border-secondary-subtle">{% trans "Inactive" %}</span>
|
|
{% endif %}
|
|
</td>
|
|
|
|
{# Column: First Join Date #}
|
|
<td class="small text-muted text-center" title="{{ user.date_joined|date:'DATETIME_FORMAT' }}">
|
|
{{ user.date_joined|date:"d M Y" }}
|
|
</td>
|
|
|
|
{# Column: Last Login Date #}
|
|
<td class="small text-center">
|
|
{% if user.last_login %}
|
|
<span title="{{ user.last_login|date:'DATETIME_FORMAT' }}">{{ user.last_login|naturaltime }}</span>
|
|
{% else %}
|
|
{% trans "Never" %}
|
|
{% endif %}
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
<div class="action-btns">
|
|
|
|
|
|
{# 2. Change Password Button (Key Icon) #}
|
|
<a href="{% url 'set_staff_password' user.pk %}" class="btn btn-sm btn-outline-info" title="{% trans 'Change Password' %}">
|
|
<i class="fas fa-key"></i>
|
|
{% trans 'Change Password' %}
|
|
</a>
|
|
|
|
{# 3. Delete Button (Trash Icon) #}
|
|
|
|
{% if user.is_active %}
|
|
|
|
|
|
<form method="post" action="{% url 'account_toggle_status' user.pk %}">
|
|
{% csrf_token %}
|
|
|
|
{# The button for DEACTIVATION #}
|
|
<button type="submit" >
|
|
<i class="fas fa-times-circle text-danger"></i> Deactivate
|
|
</button>
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<form method="post" action="{% url 'account_toggle_status' user.pk %}">
|
|
{% csrf_token %}
|
|
|
|
{# The button for REACTIVATION #}
|
|
|
|
|
|
<button type="submit bg-primary" >
|
|
<i class="fas fa-check-circle text-primary"></i> Activate
|
|
</button>
|
|
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
{% empty %}
|
|
<tr>
|
|
<td colspan="8" class="text-center text-muted py-4">{% trans "No staff users found." %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |