1👍
✅
According to your template settings, ‘APP_DIRS’:True, means that Django will search through your app’s directory looking for a ‘templates’ folder. Therefore, inside your rango app folder create a directory templates/rango/ and ensure your index.html is inside that folder.
Alternatively, if your templates folder is somewhere else, put the full path to your templates directory in TEMPLATE settings ‘DIRS’: [/full/path/to/templates/folder]
Source:stackexchange.com