Add searchable User table.

This commit is contained in:
Stephan Porada
2019-08-08 16:06:41 +02:00
parent 14b64f86ba
commit 388e0433fd
3 changed files with 24 additions and 7 deletions

View File

@ -60,6 +60,7 @@ def dashboard():
def for_admins_only():
users = User.query.order_by(User.username).all()
items = [AdminUserItem(u.username, u.email, u.role_id, u.confirmed) for u in users]
table = AdminUserTable(items)
table = AdminUserTable(items).__html__() # converts table object to html string
table = table.replace('tbody', 'tbody class="list"', 1) # add class list to tbody element. Needed by list.js
return render_template('main/admin.html.j2', title='Administration tools',
table=table.__html__())
table=table)