From 7a3a54ec40fac9071a513487602957f8418f163e Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 8 Jul 2022 07:32:58 +0300 Subject: Select the platform (GeneChipId) first --- qc_app/templates/parse_results.html | 2 +- qc_app/templates/select_platform.html | 72 +++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 qc_app/templates/select_platform.html (limited to 'qc_app/templates') diff --git a/qc_app/templates/parse_results.html b/qc_app/templates/parse_results.html index 1a224e8..80d6a2d 100644 --- a/qc_app/templates/parse_results.html +++ b/qc_app/templates/parse_results.html @@ -13,7 +13,7 @@ {{errors_display(errors, "No errors found in the file", "We found the following errors")}} {%if errors | length == 0 %} -
+
diff --git a/qc_app/templates/select_platform.html b/qc_app/templates/select_platform.html new file mode 100644 index 0000000..f8db736 --- /dev/null +++ b/qc_app/templates/select_platform.html @@ -0,0 +1,72 @@ +{%extends "base.html"%} + +{%block title%}Select Dataset{%endblock%} + +{%block contents%} +

{{filename}}: select platform

+ +
+ + + +
+ + +
+ + + + + + + + + + + + + + {%for chip in genechips:%} + + + + + + + + {%else%} + + + + {%endfor%} + +
SelectGeneChip NameNameGeoPlatformGO Tree Value
+ + {{chip["GeneChipName"]}}{{chip["Name"]}}{{chip["GeoPlatform"]}}{{chip["GO_tree_value"]}}
No chips found for selected species
+ +
+ +
+
+{%endblock%} + +{%block javascript%} + + + +{%endblock%} -- cgit v1.2.3