From 480ee0b657b762f1dd0b1164f98ab13bc9a11f56 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Mon, 23 Sep 2024 16:29:25 -0500 Subject: Initialise "Platforms" section. --- uploader/templates/platforms/create-platform.html | 103 ++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 uploader/templates/platforms/create-platform.html (limited to 'uploader/templates/platforms/create-platform.html') diff --git a/uploader/templates/platforms/create-platform.html b/uploader/templates/platforms/create-platform.html new file mode 100644 index 0000000..b5961ce --- /dev/null +++ b/uploader/templates/platforms/create-platform.html @@ -0,0 +1,103 @@ +{%extends "platforms/base.html"%} +{%from "flash_messages.html" import flash_all_messages%} +{%from "species/macro-display-species-card.html" import display_species_card%} + +{%block title%}Platforms — Create Platforms{%endblock%} + +{%block pagetitle%}Platforms — Create Platforms{%endblock%} + +{%block lvl3_breadcrumbs%} + +{%endblock%} + +{%block contents%} +{{flash_all_messages()}} + +
+

Create New Platform

+ +

You can create a new genetic sequencing platform below.

+
+ +
+
+ +
+ + + +

This is the platform's + + accession value on NCBI. If you do not know the value, click the + link and search on NCBI for species '{{species.FullName}}'.

+
+ +
+ + + +

This is name of the genetic sequencing platform.

+
+ +
+ + + +

Use the following conventions for this field: +

    +
  1. Start with a 4-letter vendor code, e.g. "Affy" for "Affymetrix", "Illu" for "Illumina", etc.
  2. +
  3. Append an underscore to the 4-letter vendor code
  4. +
  5. Use the name of the array given by the vendor, e.g. U74AV2, MOE430A, etc.
  6. +
+

+
+
+ +
+ + + +

The full platform title. Sometimes, this is the same as the Platform + Name above.

+
+ +
+ +
+
+
+{%endblock%} + +{%block sidebarcontents%} +{{display_species_card(species)}} +{%endblock%} -- cgit v1.2.3