modified: templates/users.html
This commit is contained in:
@@ -12,7 +12,7 @@
|
|||||||
<table class="table table-bordered mt-4">
|
<table class="table table-bordered mt-4">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Username</th>
|
<th>User id</th>
|
||||||
<th>Permission Level</th>
|
<th>Permission Level</th>
|
||||||
<th>Points</th>
|
<th>Points</th>
|
||||||
<th>Ban Status</th>
|
<th>Ban Status</th>
|
||||||
@@ -23,7 +23,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
{% for user in users %}
|
{% for user in users %}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ user.username }}</td>
|
<td>{{ user.user_id }}</td>
|
||||||
<td>
|
<td>
|
||||||
<form action="{{ url_for('update_role', user_id=user.user_id) }}" method="POST">
|
<form action="{{ url_for('update_role', user_id=user.user_id) }}" method="POST">
|
||||||
<select name="permission" class="form-control">
|
<select name="permission" class="form-control">
|
||||||
|
|||||||
Reference in New Issue
Block a user