modified: templates/users.html

This commit is contained in:
SimolZimol
2024-09-04 11:18:10 +02:00
parent cd06f94510
commit 8bf1245c49

View File

@@ -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">