Django Admin Not loading styles initially

Has anybody ever came across this weird issue? I have to customize Django admin templates at the beginning of every new project because the styles aren’t being loaded, yet Django admin app is still in the installed apps list, I ran migrations and collectstatic, nothing changes! Please even a hint. I need help. Thank you

Welcome @alamindrz !

You’re going to need to be a lot more specific about the issue that you’re facing.

What styles aren’t being loaded?

Are you working in a development mode, or is this happening to you when you’re trying to deploy your project?

Side note: Migrations has nothing to do with this. It is not involved at all with this process.
If you’re running in a development mode (with DEBUG=True), then collectstatic has nothing to do with this either. (If you’re not running with DEBUG=True, then change it and let us know the result.)

Please post the contents of your settings.py file.

Side note: When you post the contents of a file, put those contents between lines of three backtick - ` characters. This means you’ll have a line of ```, then the code, then another line of ```. This forces the forum software to keep your code properly formatted.

You probably want to install whitenoise.