[Django]-TemplateDoesNotExist at / blog/index.html

3👍

You must add the blog app to your project by including it in your INSTALLED_APPS setting:

INSTALLED_APPS = [...,
                  'blog']

Otherwise the template loader will not process the blog directory since it is not seen as an app.

👤Selcuk

Leave a comment