aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/continue_from_create_dataset.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/continue_from_create_dataset.html')
-rw-r--r--qc_app/templates/continue_from_create_dataset.html52
1 files changed, 0 insertions, 52 deletions
diff --git a/qc_app/templates/continue_from_create_dataset.html b/qc_app/templates/continue_from_create_dataset.html
deleted file mode 100644
index 03bb49c..0000000
--- a/qc_app/templates/continue_from_create_dataset.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.final_confirmation')}}"
- id="select-platform-form" data-genechips="{{genechips_data}}"
- class="two-col-sep-col1">
- <legend>continue with new dataset</legend>
- {{hidden_fields(
- filename, filetype, species=species, genechipid=genechipid,
- studyid=studyid, datasetid=datasetid, 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_dataset')}}"
- id="select-platform-form" data-genechips="{{genechips_data}}"
- class="two-col-sep-col2">
- <legend>Select from existing dataset</legend>
- {{hidden_fields(
- filename, filetype, species=species, genechipid=genechipid,
- studyid=studyid, datasetid=datasetid, totallines=totallines)}}
-
- <button type="submit" class="btn btn-primary">go back</button>
- </form>
-</div>
-{%endblock%}