From cf8d133b110d87aed5cb6695711616625a6669fd Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 18 Jan 2024 05:52:52 +0300 Subject: Create new ProbeSet study. --- .../rqtl2/create-probe-study-success.html | 53 +++++++++++++++ .../templates/rqtl2/select-probeset-study-id.html | 79 ++++++++++++++++++++-- 2 files changed, 126 insertions(+), 6 deletions(-) create mode 100644 qc_app/templates/rqtl2/create-probe-study-success.html (limited to 'qc_app/templates') diff --git a/qc_app/templates/rqtl2/create-probe-study-success.html b/qc_app/templates/rqtl2/create-probe-study-success.html new file mode 100644 index 0000000..1b85d0c --- /dev/null +++ b/qc_app/templates/rqtl2/create-probe-study-success.html @@ -0,0 +1,53 @@ +{%extends "base.html"%} +{%from "flash_messages.html" import flash_messages%} + +{%block title%}Upload R/qtl2 Bundle{%endblock%} + +{%block contents%} +

Create ProbeSet Study

+ +
+

You successfully created the ProbeSet study with the following + information. +

+
ID
+
{{study.id}}
+ +
Name
+
{{study.name}}
+ +
Full Name
+
{{study.fname}}
+ +
Short Name
+
{{study.sname}}
+ +
Created On
+
{{study.today}}
+
+

+
+ +
+ Create ProbeSet study + + + + + + + +
+ +
+
+ +{%endblock%} diff --git a/qc_app/templates/rqtl2/select-probeset-study-id.html b/qc_app/templates/rqtl2/select-probeset-study-id.html index bb31fde..34aa54e 100644 --- a/qc_app/templates/rqtl2/select-probeset-study-id.html +++ b/qc_app/templates/rqtl2/select-probeset-study-id.html @@ -1,5 +1,5 @@ {%extends "base.html"%} -{%from "flash_messages.html" import flash_messages%} +{%from "flash_messages.html" import flash_messages, flash_all_messages%} {%block title%}Upload R/qtl2 Bundle{%endblock%} @@ -12,9 +12,13 @@

This page gives you the ability to do that.

+{{flash_all_messages()}} +
- Select from existing ProbeSet datasets + action="{{url_for('upload.rqtl2.select_probeset_study', + species_id=species.SpeciesId, population_id=population.Id)}}" + id="frm:select-probeset-study"> + Select from existing ProbeSet studies OR

- Create new ProbeSet dataset - Under construction + action="{{url_for('upload.rqtl2.create_probeset_study', + species_id=species.SpeciesId, population_id=population.Id)}}" + id="frm:create-probeset-study"> + Create new ProbeSet study + + + + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ +
{%endblock%} -- cgit v1.2.3