1👍
✅
looks like in your settings.py you are setting your static root to “staticfiles/“. However your static files are stored inside the Templates folder.
You can fix this error by simply moving your templates folder inside of the staticfiles folder.
The tree for your staticfiles folder would look a little like this.
Keep in mind you will need to make the appropriate changes to all of the paths referencing the static files. Best of luck.
Source:stackexchange.com