diff --git a/Website/__init__.py b/Website/__init__.py
index 9939743..8220179 100644
--- a/Website/__init__.py
+++ b/Website/__init__.py
@@ -63,7 +63,7 @@ def create_app(test_config=None):
c = db.cursor()
c.execute("SELECT * FROM users")
users = c.fetchall()
- return render_template("list.html", users=users, preis=(preis/100))
+ return render_template("list.html", users=users, preis=(preis/100), min_value=-50000)
@app.route("/transactionlist")
def transactionlist():
diff --git a/Website/templates/list.html b/Website/templates/list.html
index cd29f13..07bfad3 100644
--- a/Website/templates/list.html
+++ b/Website/templates/list.html
@@ -18,16 +18,16 @@ Strichliste
-{% for i in users %}
+{% for user in users %}