max and min value in user

This commit is contained in:
bton 2024-06-02 12:52:09 +02:00
parent 14624a4f6e
commit a31337f0f2
2 changed files with 2 additions and 2 deletions

View file

@ -123,7 +123,7 @@ def create_app(test_config=None):
if user != None :
c.execute(f"SELECT * FROM tags WHERE userid={user[0]}")
tags = c.fetchall()
return render_template("user.html", user=user, tags=tags)
return render_template("user.html", user=user, tags=tags, min_value=-50000)
else:
return render_template("error.html", error_code="043")