diff options
author | Alexander_Kabui | 2024-09-26 14:40:38 +0300 |
---|---|---|
committer | Alexander_Kabui | 2024-09-26 14:40:38 +0300 |
commit | e062ac387aa48c40f8cfba720cbbfc7fc86320d1 (patch) | |
tree | 9443f3b1c7319d8b02f00fa4acb3b5ad203702f7 /gn2/wqflask/templates/wiki | |
parent | 386130487dc5287382ebc27413a642253c953986 (diff) | |
download | genenetwork2-e062ac387aa48c40f8cfba720cbbfc7fc86320d1.tar.gz |
feat: Modify templates to extend from index_page.
* This ensures we have the global search functionality included
for all.
Diffstat (limited to 'gn2/wqflask/templates/wiki')
-rw-r--r-- | gn2/wqflask/templates/wiki/edit_wiki.html | 2 | ||||
-rw-r--r-- | gn2/wqflask/templates/wiki/genewiki.html | 2 | ||||
-rw-r--r-- | gn2/wqflask/templates/wiki/history.html | 2 | ||||
-rw-r--r-- | gn2/wqflask/templates/wiki/search.html | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gn2/wqflask/templates/wiki/edit_wiki.html b/gn2/wqflask/templates/wiki/edit_wiki.html index 23412a31..66371cf3 100644 --- a/gn2/wqflask/templates/wiki/edit_wiki.html +++ b/gn2/wqflask/templates/wiki/edit_wiki.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "index_page.html" %} {% block css %} <style> diff --git a/gn2/wqflask/templates/wiki/genewiki.html b/gn2/wqflask/templates/wiki/genewiki.html index b07e86e0..06fa1f3a 100644 --- a/gn2/wqflask/templates/wiki/genewiki.html +++ b/gn2/wqflask/templates/wiki/genewiki.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "index_page.html" %} {% block title %}GeneWiki Entry for {{ symbol }}{% endblock %} {% block content %} {{ flash_me() }} diff --git a/gn2/wqflask/templates/wiki/history.html b/gn2/wqflask/templates/wiki/history.html index bda802d3..4d48b7e8 100644 --- a/gn2/wqflask/templates/wiki/history.html +++ b/gn2/wqflask/templates/wiki/history.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "index_page.html" %} {% block content %} {{ flash_me() }} <div class = "container container-fluid"> diff --git a/gn2/wqflask/templates/wiki/search.html b/gn2/wqflask/templates/wiki/search.html index 863d3daa..e2899976 100644 --- a/gn2/wqflask/templates/wiki/search.html +++ b/gn2/wqflask/templates/wiki/search.html @@ -1,4 +1,4 @@ -{% extends "base.html" %} +{% extends "index_page.html" %} {% block content %} <div class="container"> <div class="row"> |