From 234d45189fe43e78fbec94141f7df72cf25133da Mon Sep 17 00:00:00 2001 From: Zachary Sloan Date: Wed, 19 Jun 2013 20:49:19 +0000 Subject: When I pulled Sam's code the search page was changed from GET to POST in views.py, so I had to change it back --- wqflask/wqflask/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wqflask') diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index 8d404a28..b9aa3acf 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -71,7 +71,7 @@ def data_sharing_page(): htmlfilelist=htmlfilelist) -@app.route("/search", methods=('POST',)) +@app.route("/search", methods=('GET',)) def search_page(): print("in search_page") if 'info_database' in request.args: -- cgit v1.2.3