diff options
author | BonfaceKilz | 2022-05-04 09:19:48 +0300 |
---|---|---|
committer | BonfaceKilz | 2022-05-04 09:22:45 +0300 |
commit | 019768fc2374044cd7701fb62272ee6b88897741 (patch) | |
tree | 49374337057847c14ab362e8432d9712c7bad47f | |
parent | f4c458f71e94254b05c42c1f1c5caaac2e687e72 (diff) | |
download | genenetwork2-019768fc2374044cd7701fb62272ee6b88897741.tar.gz |
Add text-field for the "Volume" of a Publication
-rw-r--r-- | wqflask/wqflask/templates/edit_phenotype.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/edit_phenotype.html b/wqflask/wqflask/templates/edit_phenotype.html index 617848ad..6db8737e 100644 --- a/wqflask/wqflask/templates/edit_phenotype.html +++ b/wqflask/wqflask/templates/edit_phenotype.html @@ -190,7 +190,14 @@ <input name="old_abstract" class="changed" type="hidden" value="{{ publication.abstract |default('', true) }}"/> </div> </div> - <div class="form-group"> + <div class="form-group"> + <label for="volume" class="col-sm-3 col-lg-2 control-label text-left">Volume</label> + <div class="col-sm-7 col-lg-8"> + <textarea name="volume" class="form-control" rows="6">{{ publication.volume |default('', true) }}</textarea> + <input name="old_volume" class="changed" type="hidden" value="{{ publication.volume |default('', true) }}"/> + </div> + </div> + <div class="form-group"> <label for="journal" class="col-sm-3 col-lg-2 control-label text-left">Journal</label> <div class="col-sm-7 col-lg-8"> <textarea name="journal" class="form-control" rows="1">{{ publication.journal |default('', true) }}</textarea> |