Nested django templates
This seems like a pretty basic thing to do but although I've been using Django for around a year, I've never run into this scenario yet. In a lot of templating/web frameworks, template inheritance works a bit differently, in that usually it behaves more like wrappers, so if you have childtemplate.html, parenttemplate.html, and grandparenttemplate.html, then the finally rendering usually looks something like: grandparent header parent header child header child content parent content parent footer grandparent content grandparent footer That's not exactly how it works in Django but I'm wondering