diff options
author | Frederick Muriuki Muriithi | 2022-07-13 02:37:52 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2022-07-19 04:59:59 +0300 |
commit | 68cf0750ee29d91abf8fe8d0a81426e324b41b12 (patch) | |
tree | ed1b752cb63937ebe5d1c5cca812cbd0f7bd65a6 /qc_app/templates/dbupdate_hidden_fields.html | |
parent | 27032e1876373f9b519275bffbca117f2c96ca1f (diff) | |
download | gn-uploader-68cf0750ee29d91abf8fe8d0a81426e324b41b12.tar.gz |
Implement dataset selection
- Implement UI enabling selection from existing datasets
- Start implementation of UI that enables creation of new dataset
Diffstat (limited to 'qc_app/templates/dbupdate_hidden_fields.html')
-rw-r--r-- | qc_app/templates/dbupdate_hidden_fields.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qc_app/templates/dbupdate_hidden_fields.html b/qc_app/templates/dbupdate_hidden_fields.html index ec31202..c66ebba 100644 --- a/qc_app/templates/dbupdate_hidden_fields.html +++ b/qc_app/templates/dbupdate_hidden_fields.html @@ -10,5 +10,14 @@ {%if kwargs.get("genechipid"):%} <input type="hidden" name="genechipid" value="{{kwargs['genechipid']}}" /> {%endif%} +{%if kwargs.get("inbredsetid"):%} +<input type="hidden" name="inbredsetid" value="{{kwargs['inbredsetid']}}" /> +{%endif%} +{%if kwargs.get("tissueid"):%} +<input type="hidden" name="tissueid" value="{{kwargs['tissueid']}}" /> +{%endif%} +{%if kwargs.get("studyid"):%} +<input type="hidden" name="studyid" value="{{kwargs['studyid']}}" /> +{%endif%} {%endmacro%} |