From e062ac387aa48c40f8cfba720cbbfc7fc86320d1 Mon Sep 17 00:00:00 2001 From: Alexander_Kabui Date: Thu, 26 Sep 2024 14:40:38 +0300 Subject: feat: Modify templates to extend from index_page. * This ensures we have the global search functionality included for all. --- gn2/wqflask/templates/jobs/debug.html | 2 +- gn2/wqflask/templates/jobs/no-such-job.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'gn2/wqflask/templates/jobs') diff --git a/gn2/wqflask/templates/jobs/debug.html b/gn2/wqflask/templates/jobs/debug.html index 828ab1cc..a97900d4 100644 --- a/gn2/wqflask/templates/jobs/debug.html +++ b/gn2/wqflask/templates/jobs/debug.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%block title%}Debug Job{% endblock%} {%block css%} {%endblock%} diff --git a/gn2/wqflask/templates/jobs/no-such-job.html b/gn2/wqflask/templates/jobs/no-such-job.html index 6fe7d014..e4cbe971 100644 --- a/gn2/wqflask/templates/jobs/no-such-job.html +++ b/gn2/wqflask/templates/jobs/no-such-job.html @@ -1,4 +1,4 @@ -{%extends "base.html"%} +{% extends "index_page.html" %} {%block title%}No Such Job{% endblock%} {%block css%} {%endblock%} -- cgit v1.2.3