aboutsummaryrefslogtreecommitdiff
path: root/app.py
diff options
context:
space:
mode:
authorJoshCreany <joshcreany@gmail.com>2023-10-08 12:49:31 -0600
committerJoshCreany <joshcreany@gmail.com>2023-10-08 12:49:31 -0600
commitcfa57992909bfe2f4340ea05667ef34c5a17494a (patch)
tree8eb7522396a74599251e030ab31eaafcd1e8f649 /app.py
parentc93ef2dd9948658b5c477bcd4d82080c19c006e3 (diff)
Cleaned up search area and started putting tasks into cards
Diffstat (limited to 'app.py')
-rw-r--r--app.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app.py b/app.py
index 7f77c4a..66257fb 100644
--- a/app.py
+++ b/app.py
@@ -85,7 +85,7 @@ def search():
print(my_cars, "MY CARS")
except:
print("Uh oh! Claude didn't return any results!")
- return render_template("tasks.html", to_do=tasks)
+ return render_template("tasks.html", search_query=request.form["search"], to_do=tasks)
@app.route("/progress")
def progress():