[Answered ]-"Can't find template" error in Django

2👍

✅

You have 'DIRS': [BASE_DIR], but your templates are not in BASE_DIR, they are in BASE_DIR/templates. You should have:

'DIRS': [os.path.join(BASE_DIR, 'templates')],

Leave a comment