From e49b4367f1dab1c3acb3cd5d71ba09359c5ab4ee Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 29 Aug 2024 15:21:27 -0500 Subject: Initialise package for dealing with Species. --- uploader/templates/species/base.html | 11 +++ uploader/templates/species/create-species.html | 116 +++++++++++++++++++++++++ uploader/templates/species/list-species.html | 68 +++++++++++++++ 3 files changed, 195 insertions(+) create mode 100644 uploader/templates/species/base.html create mode 100644 uploader/templates/species/create-species.html create mode 100644 uploader/templates/species/list-species.html (limited to 'uploader/templates/species') diff --git a/uploader/templates/species/base.html b/uploader/templates/species/base.html new file mode 100644 index 0000000..b77cc8b --- /dev/null +++ b/uploader/templates/species/base.html @@ -0,0 +1,11 @@ +{%extends "base.html"%} + +{%block breadcrumbs%} +
+ All data in GeneNetwork revolves around species. This is the core of the + system.
+Here you can see a list of all the species available in GeneNetwork. + Click on the link besides each species to view greater detail on the species, + and access further operations that are possible for said species.
+If you cannot find the species you are looking for below, click the button + below to create it
+ +Common Name | +Scientific Name | +TaxonId | +Use | +
---|---|---|---|
{{species["SpeciesName"]}} | +{{species["FullName"]}} | ++ {{species["TaxonomyId"]}} + | ++ + {{species["SpeciesName"]}} ({{species["FullName"]}}) + + | +
+ + + There were no species found! + + |
+