Skip to content

Instantly share code, notes, and snippets.

View albsen's full-sized avatar

A. Sebastian Dietzel albsen

View GitHub Profile
from django.contrib.admin.views.decorators import staff_member_required
@staff_member_required
def login_using_email(request, email):
'''DONT EVER USE this method for normal purposes. This is only there, for debugging specific problems related to users'''
from django.contrib.auth import get_backends
from django.contrib.auth import login as django_login
from django.contrib.auth.models import User