Search code examples
djangoinheritancedjango-templatesdjango-inheritancetemplate-inheritance

Is it possible to make multi-level 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?


Solution

  • Yes, it will. Why not to try it yourself?