diff options
author | JoshCreany <joshcreany@gmail.com> | 2023-10-08 12:49:31 -0600 |
---|---|---|
committer | JoshCreany <joshcreany@gmail.com> | 2023-10-08 12:49:31 -0600 |
commit | cfa57992909bfe2f4340ea05667ef34c5a17494a (patch) | |
tree | 8eb7522396a74599251e030ab31eaafcd1e8f649 /app.py | |
parent | c93ef2dd9948658b5c477bcd4d82080c19c006e3 (diff) |
Cleaned up search area and started putting tasks into cards
Diffstat (limited to 'app.py')
-rw-r--r-- | app.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(): |