Tagged Questions
-1
votes
2answers
144 views
Is it possible to make multiple template inheritance in django templates?
I have three html-files:
base.html
page.html
comment.html
in page.html I extend base.html. In comment.html I extend page.html. Will comment.html extend base.html's blocks?