[Answered ]-Extends tag with Django

2👍

You have no “content” block in your base.html template, so obviously you cannot override it in “home.html”. The idea is to use the base template to define the common page structure, with (usually empty) blocks as placeholders that the “concrete” templates will fill. IOW : you must add an empty “content” block in your base template where you want the content to appear 😉

Leave a comment