Django contrib admin default admin and password
You can config using following command line in shell
python manage.py createsuperuser
Basically you're creating superuser who can access the django admin panel.
First you need to run migrate to change the admin username and password. Run
python manage.py migrate
Then edit the username and password using
python manage.py createsuperuser
Then give an username and password and a email.