diff options
| author | Frederick Muriuki Muriithi | 2026-01-23 12:54:56 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2026-01-23 13:00:08 -0600 |
| commit | 770a3171af257ec689ae14ca48fb5c6ac7be9812 (patch) | |
| tree | 53f7a2c4bb02dffc5584bed01a275380a1c2c5c9 /uploader/templates | |
| parent | c689c97b2a7003a475f35f786710a7591631b06c (diff) | |
| download | gn-uploader-770a3171af257ec689ae14ca48fb5c6ac7be9812.tar.gz | |
Initialise UI for deletion of phenotypes.
Diffstat (limited to 'uploader/templates')
| -rw-r--r-- | uploader/templates/phenotypes/view-dataset.html | 18 |
1 files changed, 16 insertions, 2 deletions
diff --git a/uploader/templates/phenotypes/view-dataset.html b/uploader/templates/phenotypes/view-dataset.html index 1fd15b2..1beeb32 100644 --- a/uploader/templates/phenotypes/view-dataset.html +++ b/uploader/templates/phenotypes/view-dataset.html @@ -67,7 +67,7 @@ <input type="submit" title="Compute/Recompute the means for all phenotypes." class="btn btn-info" - value="(rec/c)ompute means" + value="compute means" id="submit-frm-recompute-phenotype-means" /> </form> </div> @@ -85,10 +85,24 @@ <input type="submit" title="Run/Rerun QTLReaper." class="btn btn-info" - value="(re)run QTLReaper" + value="run QTLReaper" id="submit-frm-rerun-qtlreaper" /> </form> </div> + + {%if view_under_construction%} + <div class="col"> + <a href="{{url_for( + 'species.populations.phenotypes.delete_phenotypes', + species_id=species['SpeciesId'], + population_id=population['Id'], + dataset_id=dataset['Id'])}}" + class="btn btn-danger" + id="btn-delete-phenotypes" + title="Delete phenotypes from this dataset. If no phenotypes are selected in the table, this will delete ALL the phenotypes."> + delete phenotypes</a> + </div> + {%endif%} </div> <div class="row"> |
