extend base.html problem extend base.html problem django django

extend base.html problem


"At the same place" as yoga/index.html means that the template is actually yoga/base.html.


Assuming TEMPLATE_DIRS contains /home/mo/python/django/templates/, without the .../yoga/, so you need to:

move base.html into /home/mo/python/django/templates/

OR

write {% extends "yoga/base.html" %} in your template


Is base.html in a directory in the TEMPLATE_DIRS list in your settings file?