Django Admin Site
Understand how to create admin credentials and log in to the Django admin site. Explore the authentication system to manage users, permissions, and group settings for effective site management.
We'll cover the following...
Django provides an admin panel that allows us to manage the content of our site. To access the admin panel, we need to create admin credentials first. Only people that we trust to manage the content of our site should have access to the admin site.
Create admin credentials
We can create admin credentials with the following command. You can use the credentials below, but feel free to enter your own as you go through the process. Please note that you will have to type out a password on the prompts titled Password and Password (again).
Login
Issue the command python manage.py runserver to run the app. To ...