Remake nav bar to work with more filters

Add new background work on fixing tables
This commit is contained in:
Michał Gdula 2023-06-11 16:56:12 +03:00
parent 1027361601
commit 459aefb124
15 changed files with 248 additions and 191 deletions

View file

@ -31,7 +31,7 @@ def account():
if action == "password":
flash("Insert password change function", "error")
token_list = Tokens.query.filter_by(holder=current_user.id).all()
token_list = Tokens.query.filter_by(user_id=current_user.id).all()
return render_template("account.html", token_list=token_list)