about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2026-04-13 10:42:16 -0500
committerFrederick Muriuki Muriithi2026-04-13 10:42:16 -0500
commite51cf1c32d95ed83a8d7cfc0b12313df3bb3776c (patch)
treefccb1591f5f5a211f809ad43baddf1a5626e74cd
parent7882f61fe9222b7dcdbb2a93db5d39f3a0c3a268 (diff)
downloadgn-uploader-e51cf1c32d95ed83a8d7cfc0b12313df3bb3776c.tar.gz
Delete obsolete template.
-rw-r--r--uploader/templates/genotypes/index.html32
1 files changed, 0 insertions, 32 deletions
diff --git a/uploader/templates/genotypes/index.html b/uploader/templates/genotypes/index.html
deleted file mode 100644
index b50ebc5..0000000
--- a/uploader/templates/genotypes/index.html
+++ /dev/null
@@ -1,32 +0,0 @@
-{%extends "genotypes/base.html"%}
-{%from "flash_messages.html" import flash_all_messages%}
-{%from "species/macro-select-species.html" import select_species_form%}
-
-{%block title%}Genotypes{%endblock%}
-
-{%block pagetitle%}Genotypes{%endblock%}
-
-
-{%block contents%}
-{{flash_all_messages()}}
-
-<div class="row">
-  <p>
-    This section allows you to upload genotype information for your experiments,
-    in the case that you have not previously done so.
-  </p>
-  <p>
-    We'll need to link the genotypes to the species and population, so do please
-    go ahead and select those in the next two steps.
-  </p>
-</div>
-
-<div class="row">
-  {{select_species_form(url_for("species.populations.genotypes.index"),
-  species)}}
-</div>
-{%endblock%}
-
-{%block javascript%}
-<script type="text/javascript" src="/static/js/species.js"></script>
-{%endblock%}