From 7d26a65c825acbe9922b332ef5543e92222e7076 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Tue, 3 Sep 2024 11:31:01 -0500 Subject: Provide UI for viewing species details. --- uploader/templates/species/view-species.html | 103 +++++++++++++++++++++++++++ 1 file changed, 103 insertions(+) create mode 100644 uploader/templates/species/view-species.html (limited to 'uploader/templates') diff --git a/uploader/templates/species/view-species.html b/uploader/templates/species/view-species.html new file mode 100644 index 0000000..a0eb54b --- /dev/null +++ b/uploader/templates/species/view-species.html @@ -0,0 +1,103 @@ +{%extends "species/base.html"%} +{%from "flash_messages.html" import flash_all_messages%} + +{%block title%}View Species{%endblock%} + +{%block pagetitle%}View Species{%endblock%} + +{%block css%} + +{%endblock%} + +{%block lvl3_breadcrumbs%} + +{%endblock%} + +{%block contents%} +
+

Details on species {{species.FullName}}

+ +
+
Common Name
+
{{species.SpeciesName}}
+ +
Scientific Name
+
{{species.FullName}}
+ +
Taxonomy ID
+
{{species.TaxonomyId}}
+
+ +

Actions

+ +

+ You can proceed to perform any of the following actions for species + {{species.FullName}} +

+ +
    +
  1. + Upload Genotypes +
  2. +
  3. + + Manage populations +
  4. +
  5. any other action, perhaps …
  6. +
+ + +
+{%endblock%} + +{%block sidebarcontents%} +
+
+
Species Extras
+
+

Some extra internal-use details (mostly for UI concerns on GeneNetwork)

+

+ + If you do not understand what the following are about, simply ignore them + — + They have no bearing whatsoever on your data, or its analysis. + +

+
+
Family
+
{{species.Family}}
+ +
FamilyOrderId
+
{{species.FamilyOrderId}}
+ +
OrderId
+
{{species.OrderId}}
+
+
+ Edit +
+
+{%endblock%} -- cgit v1.2.3