diff options
author | BonfaceKilz | 2021-05-21 15:59:36 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-26 20:01:28 +0300 |
commit | cbfc07ac1c06fc3c17e8159a4afe661d2e21bee5 (patch) | |
tree | 5c3cb43db06ca897d73077322465f477aee53fa8 | |
parent | 4dea9436f3678c9f5640001b0e5b66c582048498 (diff) | |
download | genenetwork2-cbfc07ac1c06fc3c17e8159a4afe661d2e21bee5.tar.gz |
wqflask: views: Add edit_trait page
Should add some some authentication logic to this later since it's not
supposed to be accessible to everyone.
-rw-r--r-- | wqflask/wqflask/views.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/views.py b/wqflask/wqflask/views.py index 51266ada..87686d8f 100644 --- a/wqflask/wqflask/views.py +++ b/wqflask/wqflask/views.py @@ -416,7 +416,7 @@ def submit_trait_form(): @app.route("/trait/<name>/edit/<inbred_set_id>") -def show_edit_trait_page(name, inbred_set_id): +def edit_trait(name, inbred_set_id): from gn3.db.phenotypes import (Phenotype, PublishXRef, Publication, |