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?
|
I have three html-files:
in page.html I extend base.html. In comment.html I extend page.html. Will comment.html extend base.html's blocks?
| |||
|
feedback
|
|
Yes, it will. Why not to try it yourself? | |||
feedback
|
|
Yes, you can actually use as many levels of inheritance as you'd like. From The Django Book:
More here: http://www.djangobook.com/en/beta/chapter04/ | |||
|
feedback
|