From f98d0325e641dd43e0ac460ef4fa931eb94c054f Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 6 Feb 2024 05:01:18 +0300 Subject: Bug: Fix routing issues Fix the routing issues that were redirecting the flow to the wrong endpoints. --- qc_app/templates/rqtl2/select-population.html | 3 ++- qc_app/upload/rqtl2.py | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/qc_app/templates/rqtl2/select-population.html b/qc_app/templates/rqtl2/select-population.html index a1e2a83..8f2db84 100644 --- a/qc_app/templates/rqtl2/select-population.html +++ b/qc_app/templates/rqtl2/select-population.html @@ -49,7 +49,8 @@

OR

-
+ create new grouping/population {{flash_messages("error-create-population")}} diff --git a/qc_app/upload/rqtl2.py b/qc_app/upload/rqtl2.py index 73d91ec..810e031 100644 --- a/qc_app/upload/rqtl2.py +++ b/qc_app/upload/rqtl2.py @@ -95,7 +95,8 @@ def select_population(species_id: int): methods=["POST"]) def create_population(species_id: int): """Create a new population for the given species.""" - population_page = redirect(url_for("upload.rqtl2.select_population")) + population_page = redirect(url_for("upload.rqtl2.select_population", + species_id=species_id)) with database_connection(app.config["SQL_URI"]) as conn: species = species_by_id(conn, species_id) population_name = request.form.get("inbredset_name", "").strip() @@ -121,6 +122,7 @@ def create_population(species_id: int): flash("Population created successfully.", "alert-success") return redirect( url_for("upload.rqtl2.upload_rqtl2_bundle", + species_id=species_id, population_id=new_population["population_id"], pgsrc="create-population"), code=307) -- cgit v1.2.3