Django not finding base.html

While trying to follow a YouTube video on Django Templates, I was getting ".."TemplateDoesNotExist at /" so after consulting Stack Overflow I changed the following in my settings.py file

Below 'DIRS': [] changed by WHB because it wasn't finding base.html

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

2021-01-18 20:22:38
Index