diff options
author | Frederick Muriuki Muriithi | 2024-12-12 16:35:10 -0600 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-12-12 16:35:10 -0600 |
commit | 6375d65f43e858f34c87a47a9b67b45d47e39c17 (patch) | |
tree | 9b4b159671548fe64d5fbe3571569f843ee3764c | |
parent | 7dfdefe42f243615567415a2d437647a9a6a12f4 (diff) | |
download | gn-uploader-6375d65f43e858f34c87a47a9b67b45d47e39c17.tar.gz |
Add incomple template for uploading individual files.
-rw-r--r-- | uploader/templates/phenotypes/add-phenotypes-raw-files.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/uploader/templates/phenotypes/add-phenotypes-raw-files.html b/uploader/templates/phenotypes/add-phenotypes-raw-files.html new file mode 100644 index 0000000..a5fa161 --- /dev/null +++ b/uploader/templates/phenotypes/add-phenotypes-raw-files.html @@ -0,0 +1,34 @@ +{%extends "phenotypes/add-phenotypes-base.html"%} +{%from "flash_messages.html" import flash_all_messages%} +{%from "macro-table-pagination.html" import table_pagination%} +{%from "phenotypes/macro-display-pheno-dataset-card.html" import display_pheno_dataset_card%} + +{%block title%}Phenotypes{%endblock%} + +{%block pagetitle%}Phenotypes{%endblock%} + +{%block lvl4_breadcrumbs%} +<li {%if activelink=="add-phenotypes"%} + class="breadcrumb-item active" + {%else%} + class="breadcrumb-item" + {%endif%}> + <a href="{{url_for('species.populations.phenotypes.add_phenotypes', + species_id=species.SpeciesId, + population_id=population.Id, + dataset_id=dataset.Id)}}">Add Phenotypes</a> +</li> +{%endblock%} + +{%block frm_add_phenotypes_documentation%} +<p>Provide all the files requested below. … document this better …</p> +{%endblock%} + +{%block frm_add_phenotypes_elements%} +<strong>Raw files elements go here …</strong> +{%endblock%} + + +{%block page_documentation%} +page documentation goes here!!! +{%endblock%} |