Django template loader looking at an old installed_apps list from settings.py

I have Django 5.2 installed. I had an app named 'home' in my installed_apps list in settings.py. I renamed the app to 'core' and did a full refactor. Now, Django is loading the views from the 'core' app, but for some reason, the template loader is still looking in 'home/templates/home/homepage.html'. It is somehow still using the installed_apps list from the previous settings.py. Does anyone have any idea why this is happening?

Back to Top