From 493f8fbe747650a4fbac2e0b153ad0074b4f91e4 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 6 Dec 2023 13:00:53 +0300 Subject: Feature: Upload Samples/Cases Implements the code enabling the upload of the samples/cases to the database. --- qc_app/templates/samples/upload-samples.html | 107 +++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100644 qc_app/templates/samples/upload-samples.html (limited to 'qc_app/templates/samples/upload-samples.html') diff --git a/qc_app/templates/samples/upload-samples.html b/qc_app/templates/samples/upload-samples.html new file mode 100644 index 0000000..b19e38c --- /dev/null +++ b/qc_app/templates/samples/upload-samples.html @@ -0,0 +1,107 @@ +{%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 +
+ + + +
+ +
+ + + +
+ +
+ + + + +
+ +
+ + + +
+ +
+ + +
+ +
+ +
+
+ +{%endblock%} + + +{%block javascript%} +{%endblock%} -- cgit v1.2.3