diff options
author | BonfaceKilz | 2021-07-26 14:22:32 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-08-03 15:49:50 +0300 |
commit | 6eab9f07e5eaf75eaa4f406b1ed3a3cfec9575f8 (patch) | |
tree | bb86e82712827ea7fd98415181bd4167a29c873a | |
parent | 9b68883041b581fbd01e5568d36d82581dec7772 (diff) | |
download | genenetwork2-6eab9f07e5eaf75eaa4f406b1ed3a3cfec9575f8.tar.gz |
templates: edit_phenotype: Add file upload and "approval" buttons
-rw-r--r-- | wqflask/wqflask/templates/edit_phenotype.html | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/edit_phenotype.html b/wqflask/wqflask/templates/edit_phenotype.html index 5edddada..691ad27b 100644 --- a/wqflask/wqflask/templates/edit_phenotype.html +++ b/wqflask/wqflask/templates/edit_phenotype.html @@ -206,11 +206,31 @@ Submit Trait | Reset <textarea name="sequence" class="form-control" rows="6">{{ publish_xref.sequence |default('', true) }}</textarea> <input name="old_sequence" class="changed" type="hidden" value="{{ publication.sequence |default('', true) }}"/> </div> + </div> + <div class="form-group"> + <label for="sequence" class="col-sm-2 control-label">Sequence:</label> + <div class="col-sm-8"> + <textarea name="sequence" class="form-control" rows="6">{{ publish_xref.sequence |default('', true) }}</textarea> + <input name="old_sequence" class="changed" type="hidden" value="{{ publication.sequence |default('', true) }}"/> + </div> + <input type = "file" class="form-control" name = "file" /> + </div> + + <div class="form-group"> + <a href="/data/approve/"> + Data Approval + </a> + </div> + + <div class="form-group"> + <a href="/trait/{{ publish_xref.id_ }}/sampledata/{{ publish_xref.phenotype_id }}"> + Download csv of sample data for editing + </a> </div> <div class="controls" style="display:block; margin-left: 40%; margin-right: 20%;"> <input name="dataset-name" class="changed" type="hidden" value="{{ publish_xref.id_ }}"/> - <input name="phenotype-id" class="changed" type="hidden" value="{{ publish_xref.phenotype_id }}"/> <input name="inbred-set-id" class="changed" type="hidden" value="{{ publish_xref.inbred_set_id }}"/> + <input name="phenotype-id" class="changed" type="hidden" value="{{ publish_xref.phenotype_id }}"/> <input name="comments" class="changed" type="hidden" value="{{ publish_xref.comments }}"/> <input type="submit" style="width: 125px; margin-right: 25px;" class="btn btn-primary form-control col-xs-2 changed" value="Submit Change"> <input type="reset" style="width: 110px;" class="btn btn-primary form-control col-xs-2 changed" onClick="window.location.reload();" value="Reset"> |