aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/index.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-06-12 12:48:56 -0500
committerFrederick Muriuki Muriithi2024-06-12 12:48:56 -0500
commit5e96d27f3d96c84fc5a15d7040843b379b701d20 (patch)
treead283df6ef65ed66f800d79446f04b19c2d08768 /qc_app/templates/index.html
parent3abf09f5d5a0ab7fb3b1ca2be981c364ef68a8cb (diff)
downloadgn-uploader-5e96d27f3d96c84fc5a15d7040843b379b701d20.tar.gz
Make URI and UI correspond to each other.
Formerly, the URI and UI were not corresponding to each other, e.g. the URI /upload/samples/select_species would display the UI for selecting/creating the population. This was very confusing. This commit fixes that. The commit also adds in user input validation to catch input errors.
Diffstat (limited to 'qc_app/templates/index.html')
-rw-r--r--qc_app/templates/index.html19
1 files changed, 3 insertions, 16 deletions
diff --git a/qc_app/templates/index.html b/qc_app/templates/index.html
index 588133a..6e98849 100644
--- a/qc_app/templates/index.html
+++ b/qc_app/templates/index.html
@@ -114,22 +114,9 @@
<p>This section gives you the opportunity to upload any missing samples</p>
</div>
-<form method="POST" action="{{url_for('samples.select_species')}}">
- <legend class="heading">upload samples</legend>
- <fieldset>
- <label for="select_species02">Species</label>
- <select id="select_species02" name="species_id" required="required">
- <option value="">Select species</option>
- {%for spec in species%}
- <option value="{{spec.SpeciesId}}">{{spec.MenuName}}</option>
- {%endfor%}
- </select>
- </fieldset>
-
- <fieldset>
- <input type="submit" value="submit" class="btn btn-main form-col-2" />
- </fieldset>
-</form>
+<a href={{url_for("samples.select_species")}}
+ title="Upload samples/cases/individuals for your data">
+ upload Samples/Cases</a>
{%endblock%}