modified: app.py

modified:   templates/users.html
This commit is contained in:
SimolZimol
2024-09-04 11:15:17 +02:00
parent 91bb5d3e42
commit cd06f94510
2 changed files with 112 additions and 22 deletions

View File

@@ -9,37 +9,43 @@
<body>
<div class="container mt-5">
<h1 class="text-center">User Management</h1>
<table class="table table-striped mt-4">
<table class="table table-bordered mt-4">
<thead>
<tr>
<th>User ID</th>
<th>Username</th>
<th>Permission Level</th>
<th>Points</th>
<th>Ban Status</th>
<th>AskMultus Usage</th>
<th>Filter Value</th>
<th>Rank</th>
<th>Points Management</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{% for user in users %}
<tr>
<td>{{ user.user_id }}</td>
<td>{{ user.permission }}</td>
<td>{{ user.points }}</td>
<td>{{ 'Banned' if user.ban else 'Active' }}</td>
<td>{{ user.askmultus }}</td>
<td>{{ user.filter_value }}</td>
<td>{{ user.username }}</td>
<td>
{% if user.permission == 10 %}
Owner
{% elif user.permission == 8 %}
Admin
{% elif user.permission == 5 %}
Mod
{% else %}
User
{% endif %}
<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 %}