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/oauth2 | |
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/oauth2')
20 files changed, 20 insertions, 20 deletions
diff --git a/gn2/wqflask/templates/oauth2/confirm-resource-role-unassign-privilege.html b/gn2/wqflask/templates/oauth2/confirm-resource-role-unassign-privilege.html index 988cf3b4..deb22fe3 100644 --- a/gn2/wqflask/templates/oauth2/confirm-resource-role-unassign-privilege.html +++ b/gn2/wqflask/templates/oauth2/confirm-resource-role-unassign-privilege.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/create-resource.html b/gn2/wqflask/templates/oauth2/create-resource.html index 479f4152..28a93ef4 100644 --- a/gn2/wqflask/templates/oauth2/create-resource.html +++ b/gn2/wqflask/templates/oauth2/create-resource.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}Create Resource{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/create-role.html b/gn2/wqflask/templates/oauth2/create-role.html index 6cf0bb78..3d52d0ae 100644 --- a/gn2/wqflask/templates/oauth2/create-role.html +++ b/gn2/wqflask/templates/oauth2/create-role.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/data-list-genotype.html b/gn2/wqflask/templates/oauth2/data-list-genotype.html index 78939a72..f50e014c 100644 --- a/gn2/wqflask/templates/oauth2/data-list-genotype.html +++ b/gn2/wqflask/templates/oauth2/data-list-genotype.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} diff --git a/gn2/wqflask/templates/oauth2/data-list-mrna.html b/gn2/wqflask/templates/oauth2/data-list-mrna.html index c5c1c27e..501ff704 100644 --- a/gn2/wqflask/templates/oauth2/data-list-mrna.html +++ b/gn2/wqflask/templates/oauth2/data-list-mrna.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} diff --git a/gn2/wqflask/templates/oauth2/data-list-phenotype.html b/gn2/wqflask/templates/oauth2/data-list-phenotype.html index d355f3f9..810c59c7 100644 --- a/gn2/wqflask/templates/oauth2/data-list-phenotype.html +++ b/gn2/wqflask/templates/oauth2/data-list-phenotype.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} diff --git a/gn2/wqflask/templates/oauth2/data-list.html b/gn2/wqflask/templates/oauth2/data-list.html index 8a8f6694..787f892f 100644 --- a/gn2/wqflask/templates/oauth2/data-list.html +++ b/gn2/wqflask/templates/oauth2/data-list.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}Link Data{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/group.html b/gn2/wqflask/templates/oauth2/group.html index f4c29d18..0da8d754 100644 --- a/gn2/wqflask/templates/oauth2/group.html +++ b/gn2/wqflask/templates/oauth2/group.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/group_join_or_create.html b/gn2/wqflask/templates/oauth2/group_join_or_create.html index 8255d2f8..80791a99 100644 --- a/gn2/wqflask/templates/oauth2/group_join_or_create.html +++ b/gn2/wqflask/templates/oauth2/group_join_or_create.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}Join or Create Group{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/join-requests.html b/gn2/wqflask/templates/oauth2/join-requests.html index 833b4e93..11f9f055 100644 --- a/gn2/wqflask/templates/oauth2/join-requests.html +++ b/gn2/wqflask/templates/oauth2/join-requests.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/list_roles.html b/gn2/wqflask/templates/oauth2/list_roles.html index a4061fca..bd2a9c75 100644 --- a/gn2/wqflask/templates/oauth2/list_roles.html +++ b/gn2/wqflask/templates/oauth2/list_roles.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/login.html b/gn2/wqflask/templates/oauth2/login.html index eaa1a192..8203f088 100644 --- a/gn2/wqflask/templates/oauth2/login.html +++ b/gn2/wqflask/templates/oauth2/login.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%block title%}Login{%endblock%} {%block content%} <div class="container" style="min-width: 1250px;"> diff --git a/gn2/wqflask/templates/oauth2/masquerade.html b/gn2/wqflask/templates/oauth2/masquerade.html index 48ec6cee..fdf3ebbc 100644 --- a/gn2/wqflask/templates/oauth2/masquerade.html +++ b/gn2/wqflask/templates/oauth2/masquerade.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}Masquerade As{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/register_user.html b/gn2/wqflask/templates/oauth2/register_user.html index 27ccbd30..34848f07 100644 --- a/gn2/wqflask/templates/oauth2/register_user.html +++ b/gn2/wqflask/templates/oauth2/register_user.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%block title%}Register New User{%endblock%} {%block content%} <div class="container" style="min-width: 1250px;"> diff --git a/gn2/wqflask/templates/oauth2/request_error.html b/gn2/wqflask/templates/oauth2/request_error.html index e6ed5fff..d311c401 100644 --- a/gn2/wqflask/templates/oauth2/request_error.html +++ b/gn2/wqflask/templates/oauth2/request_error.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}View User{%endblock%} {%block content%} diff --git a/gn2/wqflask/templates/oauth2/resources.html b/gn2/wqflask/templates/oauth2/resources.html index c52043db..c7055211 100644 --- a/gn2/wqflask/templates/oauth2/resources.html +++ b/gn2/wqflask/templates/oauth2/resources.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}View User{%endblock%} {%block content%} diff --git a/gn2/wqflask/templates/oauth2/role.html b/gn2/wqflask/templates/oauth2/role.html index c33c93ee..4303c8c8 100644 --- a/gn2/wqflask/templates/oauth2/role.html +++ b/gn2/wqflask/templates/oauth2/role.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}View User{%endblock%} {%block content%} diff --git a/gn2/wqflask/templates/oauth2/view-resource-role.html b/gn2/wqflask/templates/oauth2/view-resource-role.html index 4bd0ab45..54de94f5 100644 --- a/gn2/wqflask/templates/oauth2/view-resource-role.html +++ b/gn2/wqflask/templates/oauth2/view-resource-role.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/view-resource.html b/gn2/wqflask/templates/oauth2/view-resource.html index 0788e30c..06b629eb 100644 --- a/gn2/wqflask/templates/oauth2/view-resource.html +++ b/gn2/wqflask/templates/oauth2/view-resource.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%from "oauth2/display_error.html" import display_error%} {%block title%}View User{%endblock%} diff --git a/gn2/wqflask/templates/oauth2/view-user.html b/gn2/wqflask/templates/oauth2/view-user.html index 34526b14..e1d06a20 100644 --- a/gn2/wqflask/templates/oauth2/view-user.html +++ b/gn2/wqflask/templates/oauth2/view-user.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%from "oauth2/profile_nav.html" import profile_nav%} {%block title%}View User{%endblock%} {%block content%} |