diff options
author | Frederick Muriuki Muriithi | 2022-07-14 06:20:44 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-07-19 05:05:38 +0300 |
commit | 8b5400fa04d4ca2e60d7e926800816245e2ab809 (patch) | |
tree | 7c96e72351e7d09b473a32415e71ced4e38b08d7 /qc_app/templates/dbupdate_hidden_fields.html | |
parent | e5c3ac00fa68f1180f1f33ba09e9786cf0e9cca5 (diff) | |
download | gn-uploader-8b5400fa04d4ca2e60d7e926800816245e2ab809.tar.gz |
Enable creation of new dataset
Enable the user to create a new dataset should the need arise.
A few extra fixes were done, such as:
- Provide list of average methods to choose from
- Provide input elements for some expected fields
- Add a new confirmation step before doing the actual data update
Diffstat (limited to 'qc_app/templates/dbupdate_hidden_fields.html')
-rw-r--r-- | qc_app/templates/dbupdate_hidden_fields.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/qc_app/templates/dbupdate_hidden_fields.html b/qc_app/templates/dbupdate_hidden_fields.html index c66ebba..5a95cbb 100644 --- a/qc_app/templates/dbupdate_hidden_fields.html +++ b/qc_app/templates/dbupdate_hidden_fields.html @@ -19,5 +19,8 @@ {%if kwargs.get("studyid"):%} <input type="hidden" name="studyid" value="{{kwargs['studyid']}}" /> {%endif%} +{%if kwargs.get("datasetid"):%} +<input type="hidden" name="datasetid" value="{{kwargs['datasetid']}}" /> +{%endif%} {%endmacro%} |