Benutzer Bearbeitung hinzugefügt
This commit is contained in:
@@ -80,12 +80,13 @@
|
||||
<th>Türchip</th>
|
||||
<th>Parkkarte</th>
|
||||
<th>Poolfahrzeug</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for user in users %}
|
||||
<tr>
|
||||
<td>{{ user.full_name }}</td>
|
||||
<td>{% set parts = user.full_name.rsplit(' ', 1) %}{{ parts[1] }}, {{ parts[0] }}</td>
|
||||
<td>{{ user.email or "-" }}</td>
|
||||
<td>{{ user.department or "-" }}</td>
|
||||
<td>
|
||||
@@ -112,6 +113,7 @@
|
||||
-
|
||||
{% endif %}
|
||||
</td>
|
||||
<td><a class="btn btn-sm btn-outline-secondary" href="{{ url_for('edit_user', user_id=user.id) }}"><i class="ti ti-edit"></i></a></td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
||||
Reference in New Issue
Block a user