I am currently working on a project and I am attempting to manage the color change of the navbar logo. After visiting the "about" page on my application, I want the navbar to change color, with half of it turning yellow to better complement the purple background.
This project is developed using Django and I have included my navbar in the base template using the standard template tag {% include 'navbar.html' %}, and then extended it to the "about" page using {% extends 'base.html' %}, following the usual Django template inheritance.
However, I am struggling to figure out how to control the navbar logo. Is there a way for me to achieve this? And if so, how can I limit the navbar changes to just one template?