ui: add login routing and docs
This commit is contained in:
158
project-management/feedback/templates/admin/dashboard.html
Normal file
158
project-management/feedback/templates/admin/dashboard.html
Normal file
@ -0,0 +1,158 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>User Administration</title>
|
||||
<link rel="stylesheet" href="/static/styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<button class="theme-toggle" onclick="toggleTheme()" aria-label="Toggle dark mode">
|
||||
<svg class="moon-icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M21.752 15.002A9.72 9.72 0 0118 15.75c-5.385 0-9.75-4.365-9.75-9.75 0-1.33.266-2.597.748-3.752A9.753 9.753 0 003 11.25C3 16.635 7.365 21 12.75 21a9.753 9.753 0 009.002-5.998z" />
|
||||
</svg>
|
||||
<svg class="sun-icon" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v2.25m6.364.386l-1.591 1.591M21 12h-2.25m-.386 6.364l-1.591-1.591M12 18.75V21m-4.773-4.227l-1.591 1.591M5.25 12H3m4.227-4.773L5.636 5.636M15.75 12a3.75 3.75 0 11-7.5 0 3.75 3.75 0 017.5 0z" />
|
||||
</svg>
|
||||
</button>
|
||||
|
||||
<div class="container">
|
||||
<header>
|
||||
<h1>User Administration</h1>
|
||||
<p>Manage OIDC users - Logged in as: <strong>{{ admin_user.username }}</strong></p>
|
||||
</header>
|
||||
|
||||
{% if message %}
|
||||
<div class="import-results success" style="max-width: 100%; margin-bottom: 20px;">
|
||||
{{ message }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<div class="stats">
|
||||
<div class="stat-card">
|
||||
<h3>Total Users</h3>
|
||||
<div class="value">{{ total_users }}</div>
|
||||
</div>
|
||||
<div class="stat-card">
|
||||
<h3>Active Users</h3>
|
||||
<div class="value value.level-low">{{ active_users }}</div>
|
||||
</div>
|
||||
<div class="stat-card">
|
||||
<h3>Admin Users</h3>
|
||||
<div class="value">{{ admin_users }}</div>
|
||||
</div>
|
||||
<div class="stat-card">
|
||||
<h3>Inactive Users</h3>
|
||||
<div class="value value.level-medium">{{ inactive_users }}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="controls">
|
||||
<a href="/admin/analytics" style="text-decoration: none;">
|
||||
<button>📊 Analytics</button>
|
||||
</a>
|
||||
<a href="/admin/clients" style="text-decoration: none;">
|
||||
<button>Manage Clients</button>
|
||||
</a>
|
||||
<a href="/admin/user/create" style="text-decoration: none;">
|
||||
<button class="secondary">Create New User</button>
|
||||
</a>
|
||||
<a href="/admin/logout" style="text-decoration: none;">
|
||||
<button class="danger">Logout</button>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
<div class="table-container">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>ID</th>
|
||||
<th>Username</th>
|
||||
<th>Name</th>
|
||||
<th>Email</th>
|
||||
<th>Status</th>
|
||||
<th>Role</th>
|
||||
<th>Permissions</th>
|
||||
<th>Created</th>
|
||||
<th>Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for user in users %}
|
||||
<tr>
|
||||
<td><strong>{{ user.id }}</strong></td>
|
||||
<td>{{ user.username }}</td>
|
||||
<td>{{ user.name }}</td>
|
||||
<td>{{ user.email }}</td>
|
||||
<td>
|
||||
{% if user.is_active %}
|
||||
<span class="status-badge status-available">Active</span>
|
||||
{% else %}
|
||||
<span class="status-badge status-retired">Inactive</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>
|
||||
{% if user.role == 'admin' %}
|
||||
<span class="status-badge status-in_use">{{ user.role|capitalize }}</span>
|
||||
{% elif user.role == 'moderator' %}
|
||||
<span class="status-badge status-available">{{ user.role|capitalize }}</span>
|
||||
{% elif user.role == 'readonly' %}
|
||||
<span class="status-badge status-retired">{{ user.role|capitalize }}</span>
|
||||
{% else %}
|
||||
<span class="status-badge">{{ user.role|capitalize }}</span>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td style="font-size: 0.85rem;">
|
||||
{% if user.get_permissions()|length > 0 %}
|
||||
{{ user.get_permissions()|join(', ') }}
|
||||
{% else %}
|
||||
<em style="color: var(--text-secondary);">None</em>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td>{{ user.created_at.strftime('%Y-%m-%d %H:%M') }}</td>
|
||||
<td>
|
||||
<div class="action-buttons">
|
||||
<a href="/admin/user/{{ user.id }}/edit" style="text-decoration: none;">
|
||||
<button type="button" style="padding: 7px 14px; font-size: 0.8rem;">Edit</button>
|
||||
</a>
|
||||
|
||||
{% if user.is_active %}
|
||||
<form method="POST" action="/admin/user/{{ user.id }}/deactivate" style="display: inline;">
|
||||
<button type="submit" class="danger" style="padding: 7px 14px; font-size: 0.8rem;">Deactivate</button>
|
||||
</form>
|
||||
{% else %}
|
||||
<form method="POST" action="/admin/user/{{ user.id }}/activate" style="display: inline;">
|
||||
<button type="submit" class="secondary" style="padding: 7px 14px; font-size: 0.8rem;">Activate</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
{% if not user.is_admin or admin_count > 1 %}
|
||||
<form method="POST" action="/admin/user/{{ user.id }}/delete" style="display: inline;" onsubmit="return confirm('Delete user {{ user.username }}?');">
|
||||
<button type="submit" class="danger" style="padding: 7px 14px; font-size: 0.8rem;">Delete</button>
|
||||
</form>
|
||||
{% endif %}
|
||||
|
||||
<a href="/admin/user/{{ user.id }}/tokens" style="text-decoration: none;">
|
||||
<button type="button" class="secondary" style="padding: 7px 14px; font-size: 0.8rem;">Tokens</button>
|
||||
</a>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function toggleTheme() {
|
||||
document.body.classList.toggle('dark-mode');
|
||||
localStorage.setItem('darkMode', document.body.classList.contains('dark-mode'));
|
||||
}
|
||||
|
||||
if (localStorage.getItem('darkMode') === 'true') {
|
||||
document.body.classList.add('dark-mode');
|
||||
}
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user