From 754e8f214b940e05298cb360ed829f5c685d55a5 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 25 Jul 2024 11:07:33 -0500 Subject: Rename module: qc_app --> uploader --- uploader/templates/samples/upload-samples.html | 139 +++++++++++++++++++++++++ 1 file changed, 139 insertions(+) create mode 100644 uploader/templates/samples/upload-samples.html (limited to 'uploader/templates/samples/upload-samples.html') diff --git a/uploader/templates/samples/upload-samples.html b/uploader/templates/samples/upload-samples.html new file mode 100644 index 0000000..e62de57 --- /dev/null +++ b/uploader/templates/samples/upload-samples.html @@ -0,0 +1,139 @@ +{%extends "base.html"%} +{%from "flash_messages.html" import flash_messages%} + +{%block title%}Upload Samples{%endblock%} + +{%block css%}{%endblock%} + +{%block contents%} +

upload samples

+ +{{flash_messages("alert-success")}} + +

You can now upload a character-separated value (CSV) file that contains + details about your samples. The CSV file should have the following fields: +

+
Name
+
The primary name for the sample
+ +
Name2
+
A secondary name for the sample. This can simply be the same as + Name above. This field MUST contain a + value.
+ +
Symbol
+
A symbol for the sample. Can be an empty field.
+ +
Alias
+
An alias for the sample. Can be an empty field.
+
+

+ +
+ upload samples + +
+ + + {{species.SpeciesName}} [{{species.MenuName}}] +
+ +
+ + + {{population.Name}} [{{population.FullName}}] +
+ +
+ + +
+ +
+ + + + + If you select 'Other' for the field separator value, + enter the character that separates the fields in your CSV file in the form + field below. + +
+ +
+ + + + Select this if the first line in your file contains headings for the + columns. + +
+ +
+ + + + If there is a character delimiting the string texts within particular + fields in your CSV, provide the character here. This can be left blank if + no such delimiters exist in your file. + +
+ + +
+ + + + + + + + + + + + + + + + + + +
preview content
NameName2SymbolAlias
+ Please make some selections to preview the data.
+ +{%endblock%} + + +{%block javascript%} + +{%endblock%} -- cgit v1.2.3