Understanding Django-LDAP authentication
This page might have what you are looking for: https://pypi.python.org/pypi/django-auth-ldap concerning the LDAP backend. You are lucky that one exists, so you don’t have to code an auth backend yourself 🙂 Basically django.contrib.auth.models already has a User object that contains everything you need about the user. So you don’t need to create a new models.py. … Read more