How to reset Django admin password?
Open console using.
python manage.py shell
then use following script in shell
from django.contrib.auth.models import User
User.objects.filter(is_superuser=True)
will list you all super users on the system. if you recognise your username from the list:
usr = User.objects.get(username='your username')
usr.set_password('raw password')
usr.save()