I have base template base.html and page.html and page2.html, who extend base.html
page.html
{% extends 'base.html' %}
page2.html
{% extends 'base.html' %}
I want to receive some context to base.html when i send request to page.html and page2.html
How can i do it? Real example, if it possible.
Now i write data to every view, but it is wrong way, i think.