From 0fa44e7e5c803fe3e6e8041f59bf393323a03240 Mon Sep 17 00:00:00 2001 From: Nitin Awari Date: Mon, 13 Apr 2026 14:35:53 +0530 Subject: [PATCH] refactor(finbot-templates):unify base layout, active nav, and about page inheritance --- finbot/apps/finbot/templates/about.html | 144 ++---------------- finbot/apps/finbot/templates/base.html | 35 +++-- .../apps/finbot/templates/how-it-works.html | 10 -- 3 files changed, 35 insertions(+), 154 deletions(-) diff --git a/finbot/apps/finbot/templates/about.html b/finbot/apps/finbot/templates/about.html index 899da7f2..a7fca967 100644 --- a/finbot/apps/finbot/templates/about.html +++ b/finbot/apps/finbot/templates/about.html @@ -1,12 +1,11 @@ - - - - - +{% extends "base.html" %} + +{% block title %}About FinBot - OWASP GenAI Security Project{% endblock %} + +{% block meta %} - @@ -14,59 +13,12 @@ - +{% endblock %} - About FinBot - OWASP GenAI Security Project - - - - - - - - - - - - - - -
- - -
- -
+{% endblock %} - -
+{% block content %}
-
- - - - - +{% endblock %} diff --git a/finbot/apps/finbot/templates/base.html b/finbot/apps/finbot/templates/base.html index 69dfe82b..c78b0445 100644 --- a/finbot/apps/finbot/templates/base.html +++ b/finbot/apps/finbot/templates/base.html @@ -89,12 +89,13 @@