Files
Discord-ai-chatbot/templates/users.html
SimolZimol cd06f94510 modified: app.py
modified:   templates/users.html
2024-09-04 11:15:17 +02:00

60 lines
2.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Management</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="text-center">User Management</h1>
<table class="table table-bordered mt-4">
<thead>
<tr>
<th>Username</th>
<th>Permission Level</th>
<th>Points</th>
<th>Ban Status</th>
<th>Points Management</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.username }}</td>
<td>
<form action="{{ url_for('update_role', user_id=user.user_id) }}" method="POST">
<select name="permission" class="form-control">
<option value="0" {% if user.permission == 0 %}selected{% endif %}>User</option>
<option value="5" {% if user.permission == 5 %}selected{% endif %}>Mod</option>
<option value="8" {% if user.permission == 8 %}selected{% endif %}>Admin</option>
<option value="10" {% if user.permission == 10 %}selected{% endif %}>Owner</option>
</select>
<button type="submit" class="btn btn-primary mt-2">Update Role</button>
</form>
</td>
<td>{{ user.points }}</td>
<td>{{ "Banned" if user.ban else "Active" }}</td>
<td>
<form action="{{ url_for('update_points', user_id=user.user_id) }}" method="POST" class="form-inline">
<input type="number" name="points_change" class="form-control mr-2" placeholder="Change Points">
<button type="submit" class="btn btn-primary">Update</button>
</form>
</td>
<td>
<a href="{{ url_for('ban_user', user_id=user.user_id) }}" class="btn btn-danger">Ban</a>
<a href="{{ url_for('unban_user', user_id=user.user_id) }}" class="btn btn-success">Unban</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ url_for('index') }}" class="btn btn-secondary btn-block mt-3">Back to Dashboard</a>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>