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/create-species.html | 116 +++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 uploader/templates/species/create-species.html (limited to 'uploader/templates/species/create-species.html') diff --git a/uploader/templates/species/create-species.html b/uploader/templates/species/create-species.html new file mode 100644 index 0000000..b96e2d3 --- /dev/null +++ b/uploader/templates/species/create-species.html @@ -0,0 +1,116 @@ +{%extends "species/base.html"%} +{%from "flash_messages.html" import flash_all_messages%} + +{%block title%}Create Species{%endblock%} + +{%block pagetitle%}Create Species{%endblock%} + +{%block breadcrumbs%} + +{%endblock%} + +{%block contents%} +
+
+ Create Species + + {{flash_all_messages()}} + +
+ +
+ + + + +
+ Provide the taxonomy ID for + your species that can be used to link to external sites like NCBI. Enter + the taxonomy ID and click "Search" to auto-fill the form with data. +
+ While it is recommended to provide a value for this field, doing so is + optional. +
+
+ +
+ + + Provide the common, possibly + non-scientific name for the species here, e.g. Human, Mouse, etc. +
+ +
+ + + Provide the scientific name for the + species you are creating, e.g. Homo sapiens, Mus musculus, etc. +
+ +
+ +
+ +
+
+{%endblock%} + +{%block javascript%} + +{%endblock%} -- cgit v1.2.3