You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use this simple script to NOT spam everyone AND login as anyone:
modernomad$ ./manage.py shell
from django.contrib.auth.models import User
for u in User.objects.all():
u.email='[email protected]'
u.set_password('password')
u.save()