diff options
author | Frederick Muriuki Muriithi | 2024-07-25 11:07:33 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-07-25 14:34:09 -0500 |
commit | 754e8f214b940e05298cb360ed829f5c685d55a5 (patch) | |
tree | 62c2c5b601746621f0949b38937ad232f006dee2 /qc_app/templates/continue_from_create_study.html | |
parent | de9e1b9fe37928b864bea28b408de6c14d04526b (diff) | |
download | gn-uploader-754e8f214b940e05298cb360ed829f5c685d55a5.tar.gz |
Rename module: qc_app --> uploader
Diffstat (limited to 'qc_app/templates/continue_from_create_study.html')
-rw-r--r-- | qc_app/templates/continue_from_create_study.html | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/qc_app/templates/continue_from_create_study.html b/qc_app/templates/continue_from_create_study.html deleted file mode 100644 index 34e6e5e..0000000 --- a/qc_app/templates/continue_from_create_study.html +++ /dev/null @@ -1,52 +0,0 @@ -{%extends "base.html"%} -{%from "dbupdate_hidden_fields.html" import hidden_fields%} - -{%block title%}Create Study{%endblock%} - -{%block css%} -<link rel="stylesheet" href="/static/css/two-column-with-separator.css" /> -{%endblock%} - -{%block contents%} -<h2 class="heading">{{filename}}: create study</h2> - -{%with messages = get_flashed_messages(with_categories=true)%} -{%if messages:%} -<ul> - {%for category, message in messages:%} - <li class="{{category}}">{{message}}</li> - {%endfor%} -</ul> -{%endif%} -{%endwith%} - -<div class="row"> - <form method="POST" action="{{url_for('dbinsert.select_dataset')}}" - id="select-platform-form" data-genechips="{{genechips_data}}" - class="two-col-sep-col1"> - <legend>continue with new study</legend> - {{hidden_fields( - filename, filetype, species=species, genechipid=genechipid, - studyid=studyid, totallines=totallines)}} - - <button type="submit" class="btn btn-primary">continue</button> - </form> -</div> - -<div class="row"> - <p class="two-col-sep-separator">OR</p> -</div> - -<div class="row"> - <form method="POST" action="{{url_for('dbinsert.select_study')}}" - id="select-platform-form" data-genechips="{{genechips_data}}" - class="two-col-sep-col2"> - <legend>Select from existing study</legend> - {{hidden_fields( - filename, filetype, species=species, genechipid=genechipid, - studyid=studyid, totallines=totallines)}} - - <button type="submit" class="btn btn-primary">go back</button> - </form> -</div> -{%endblock%} |