about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--wqflask/wqflask/templates/edit_phenotype.html9
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>