diff options
| author | Frederick Muriuki Muriithi | 2022-07-06 10:19:49 +0300 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2022-07-06 10:23:46 +0300 |
| commit | 2e12c23648be1b6827f1717ca143359d29043a39 (patch) | |
| tree | 51dad8a9eff165f37bb91b0541cb38bb142fd259 /qc_app/parse.py | |
| parent | e68c807e6598a4087d7c83510ba33c81139f5544 (diff) | |
| download | gn-uploader-2e12c23648be1b6827f1717ca143359d29043a39.tar.gz | |
Implement UI for dataset selection
As part of updating the database with the new data, there is a need to select the appropriate dataset that the data belongs to, and this commit provides the UI to assist the user do that.
Diffstat (limited to 'qc_app/parse.py')
| -rw-r--r-- | qc_app/parse.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qc_app/parse.py b/qc_app/parse.py index 5d75c37..2a33fd0 100644 --- a/qc_app/parse.py +++ b/qc_app/parse.py @@ -104,7 +104,8 @@ def results(job_id: str): "parse_results.html", errors=errors, job_name = f"Parsing '{filename}'", - user_aborted = job.get("user_aborted")) + user_aborted = job.get("user_aborted"), + job_id=job["job_id"]) return render_template("no_such_job.html", job_id=job_id) |
