aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'gn2/wqflask/views.py')
-rw-r--r--gn2/wqflask/views.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/gn2/wqflask/views.py b/gn2/wqflask/views.py
index ab151c59..16c95ca7 100644
--- a/gn2/wqflask/views.py
+++ b/gn2/wqflask/views.py
@@ -248,10 +248,13 @@ def gsearchact():
search_type = request.args["type"]
is_user_logged_in = session_info().get("user", {}).get("logged_in", False)
- do_ai_search = current_app.config.get(
- "AI_SEARCH_ENABLED") and is_user_logged_in
+ ai_search_enabled = current_app.config.get("AI_SEARCH_ENABLED")
+ do_ai_search = ai_search_enabled and is_user_logged_in
if search_type == "gene":
- return render_template("gsearch_gene.html", **result, do_ai_search=do_ai_search, result=result)
+ return render_template("gsearch_gene.html", **result,
+ ai_search_enabled=ai_search_enabled,
+ do_ai_search=do_ai_search,
+ result=result)
elif search_type == "phenotype":
return render_template("gsearch_pheno.html", **result)