What 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 more