From d6019d7a2af748cd8ee5f86f0e754cb3ef5a2619 Mon Sep 17 00:00:00 2001 From: John Nduli Date: Mon, 26 Aug 2024 20:37:42 +0300 Subject: feat: add template for editting wiki --- gn2/wqflask/templates/wiki/edit_wiki.html | 92 +++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) create mode 100644 gn2/wqflask/templates/wiki/edit_wiki.html (limited to 'gn2/wqflask/templates/wiki') diff --git a/gn2/wqflask/templates/wiki/edit_wiki.html b/gn2/wqflask/templates/wiki/edit_wiki.html new file mode 100644 index 00000000..942280dc --- /dev/null +++ b/gn2/wqflask/templates/wiki/edit_wiki.html @@ -0,0 +1,92 @@ +{% extends "base.html" %} + +{% block css %} + +{% endblock %} + +{% block content %} + + + + + + Edit Wiki + + + + + Reason for Modification: + + + + Species: + + {% for name, species_name in species_dict.items() %} + {{ species_name }} + {% endfor %} + + + + PubMed IDS: + + (optional, separate by blank space only) + + + Web resource URL: + + (optional) + + + Text: + {{ content["comment"] }} + + + Email: + + + + User Code: + + (optional user or project code or your initials) + + + Category of Gene(Please select one or many categories): + + {% for group in grouped_categories %} + + {% for cat in group %} + + {{ cat }} + + {% endfor %} + + {% endfor %} + + + Update GeneWiki Entry + Reset + + + + + + + + + + + + + + + + +{% endblock %} -- cgit v1.2.3
+ +