First of all: Inside your INSTALLED_APPS tuple, in settings.py you have to enable: ‘django. contrib. admin’ . Second: you have to run python manage.py syncdb after you enable the Django admin app.
Read moreWhat is Django admin URL?
admin which indicates the Django admin site app is enabled. Start the development web server by executing python manage.py runserver on Django’s BASE_DIR . Open a browser on the Django admin site http://127.0.0.1:8000/admin/ . You’ll see a login screen like the one in Figure 1-5.
Read moreWhat is the username and password for Django admin?
Run ‘python manage.py migrate’ to apply them. Username (leave blank to use ‘chatru’): admin Email address: [email protected] Password: Password (again): The password is too similar to the username .
Read more