Skip to content
Advertisement

Django inject data after base.html

I have a base.html file which is a side bar menu. like this:

JavaScript

I also have a text file that I want to show the content. So I configured my view like this:

JavaScript

The destination HTML file which is going to show the data is like this:

JavaScript

The problem is, the text file data is now showing up. and if I remove {% extends 'base.html' %} them the text file data shows up, but I lose the side bar. How can I resolve this issue?

Advertisement

Answer

You should define some blocks to override using Django’s template inheritance:

JavaScript
Advertisement