diff options
author | John Nduli | 2024-08-27 10:21:35 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-08-29 15:31:34 +0300 |
commit | 93a870ad484f641e96c04675e5f2aaad4a12c2d5 (patch) | |
tree | 4700bd7099f049919a85dd392a22c2859d87a672 /gn2/wqflask/templates/wiki/edit_wiki.html | |
parent | d6019d7a2af748cd8ee5f86f0e754cb3ef5a2619 (diff) | |
download | genenetwork2-93a870ad484f641e96c04675e5f2aaad4a12c2d5.tar.gz |
feat: add post actions for editting wiki content
Diffstat (limited to 'gn2/wqflask/templates/wiki/edit_wiki.html')
-rw-r--r-- | gn2/wqflask/templates/wiki/edit_wiki.html | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/gn2/wqflask/templates/wiki/edit_wiki.html b/gn2/wqflask/templates/wiki/edit_wiki.html index 942280dc..cee874a3 100644 --- a/gn2/wqflask/templates/wiki/edit_wiki.html +++ b/gn2/wqflask/templates/wiki/edit_wiki.html @@ -14,6 +14,7 @@ {% block content %} +{{ flash_me() }} <section class="container center-block"> <div class="row"> <div class="col-md-3"></div> @@ -30,18 +31,26 @@ <label for="species" class="col-sm-2">Species: </label> <select name="species" id="species"> {% for name, species_name in species_dict.items() %} - <option value="{{ name }}">{{ species_name }}</option> + {% if name == content["species"] %} + <option selected="selected" value="{{ name }}">{{ species_name }}</option> + {% else %} + <option value="{{ name }}">{{ species_name }}</option> + {% endif %} {% endfor %} </select> </div> <div class="form-group"> <label for="pubmed_ids" class="col-sm-2">PubMed IDS: </label> - <input type="text" name="pubmed_ids" size=25 maxlength=25> + <input type="text" name="pubmed_ids" size=25 maxlength=25 value="{{ " ".join(content["pubmed_ids"]) }}"> (optional, separate by blank space only) </div> <div class="form-group"> - <label for="weburl" class="col-sm-2">Web resource URL: </label> - <input type="text" name="weburl" value="http://" size=50 maxlength=255> + <label for="web_url" class="col-sm-2">Web resource URL: </label> + {% if content["weburl"] %} + <input type="text" name="web_url" value="{{ content["weburl"] }}" size=50 maxlength=255> + {% else %} + <input type="text" name="web_url" value="http://" size=50 maxlength=255> + {% endif %} (optional) </div> <div class="form-group"> @@ -64,7 +73,11 @@ <div class="row"> {% for cat in group %} <label class="checkbox-inline col-sm-3"> + {% if cat in content["categories"] %} + <input checked type="checkbox" name="genecategory" value="{{ cat }}"> {{ cat }} + {% else %} <input type="checkbox" name="genecategory" value="{{ cat }} "> {{ cat }} + {% endif %} </label> {% endfor %} </div> @@ -72,21 +85,9 @@ </div> <div class="form-group"> <button type="submit" name="submit" class="btn btn-primary">Update GeneWiki Entry</button> - <button type="reset" name="rest" class="btn btn-secondary">Reset</button> + <button type="reset" name="rest" class="btn btn-secondary" onClick="window.location.reload();">Reset</button> </div> </form> </div> </div> -<FORM METHOD="POST" ACTION="/webqtl/main.py" NAME="addgenerif"> - -<INPUT TYPE="hidden" NAME="symbol" VALUE="shh"> -<INPUT TYPE="hidden" NAME="curStatus" VALUE="insertCheck"> -<INPUT TYPE="hidden" NAME="FormID" VALUE="geneWiki"> -<INPUT TYPE="hidden" NAME="reason" VALUE=""> -<INPUT TYPE="hidden" NAME="action" VALUE="update"> -<INPUT TYPE="hidden" NAME="Id" VALUE="230"> -<P> - -</FORM> - {% endblock %} |