'The Django admin site

I start the development server and explore it. When I open the Web browser and go to “/admin/” on my local domain, http://127.0.0.1:8000/admin/.I face this screen: 1



Solution 1:[1]

Did you migrate all such as db or session, etc..?

Run 'python manage.py migrate' to apply them.

Check port or open another port ex:

python manage.py runserver 0.0.0.0:80

Solution 2:[2]

Please open cmd and enter your project path And then enter the following commands in cmd Note: If you have venv, activate it beforehand

python ./manage.py migrate
python ./manage.py runserver

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 benyamin shokohi