diff options
author | Munyoki Kilyungi | 2024-09-06 17:57:57 +0300 |
---|---|---|
committer | BonfaceKilz | 2024-09-19 18:52:43 +0300 |
commit | a71f641bd893825c3d71fe55d09f40075336a345 (patch) | |
tree | e67b473056cf89426636c4f8b243fb0060547d75 /gn2/wqflask/templates/wiki | |
parent | adbd8b1a2fad59c95beb2d7ec2d2dec6165bb8d5 (diff) | |
download | genenetwork2-a71f641bd893825c3d71fe55d09f40075336a345.tar.gz |
Add a page for searching GeneWiki by symbol.
* gn2/wqflask/templates/wiki/search.html: New template.
* gn2/wqflask/views.py (search_wiki): New end-point.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn2/wqflask/templates/wiki')
-rw-r--r-- | gn2/wqflask/templates/wiki/search.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/gn2/wqflask/templates/wiki/search.html b/gn2/wqflask/templates/wiki/search.html new file mode 100644 index 00000000..863d3daa --- /dev/null +++ b/gn2/wqflask/templates/wiki/search.html @@ -0,0 +1,32 @@ +{% extends "base.html" %} +{% block content %} + <div class="container"> + <div class="row"> + <div class="col-md-9 col-md-offset-3"> + <h1> + <strong>GeneWiki Entries</strong> + </h1> + <p> + GeneWiki enables you to enrich the annotation of genes and transcripts. Please submit or edit a GeneWiki note (500 characters max) related to a gene, its transcripts, or proteins. When possible include PubMed identifiers or web resource links (URL addresses). Please ensure that the additions will have widespread use. For additional information, check the GeneWiki <a href="https://gn1.genenetwork.org/GeneWikihelp.html" target="_blank">help document</a>. + </p> + <span id="helpBlock" class="help-block">Please enter a gene symbol in the box below and then click submit.</span> + </div> + </div> + <div class="row"> + <form method="POST" + class="form-inline col-md-9 col-md-offset-3" + action="{{ url_for("search_wiki") }}"> + <div class="form-group col-md-offset-2"> + <label for="search" class="sr-only">Search Symbol</label> + <input name="search" + type="text" + class="form-control" + id="search" + placeholder="Search Symbol" + aria-describeBy="helpBlock" /> + </div> + <button type="submit" class="btn btn-primary">submit</button> + </form> + </div> + </div> +{% endblock %} |