template.exceptions.TemplateDoesNotExist It was an error I often encountered while studying django! The meaning is awesome [There is no template! ] Simple error
The cause is ・ There is no template in the first place ・ The URL is incorrect ・ Simple description mistake And so on.
Make sure that the template you want to display is in the folder.
Check the entire urls.py and urls.py for each app, and check if the app is installed properly in settings.py.
Is the spelling correct, is the hierarchical structure displayed, etc.
Recommended Posts