Custom user model for Django >= 1.5 with the same behaviour as Django's default User but without a username field. Uses email as the USERNAME_FIELD for authentication.
- Install django-custom-user with your favorite Python package manager:
pip install django-custom-user
- Add
'custom_user'
to yourINSTALLED_APPS
setting:
INSTALLED_APPS = (
# other apps
'custom_user',
)
- Set your
AUTH_USER_MODEL
setting to useEmailUser
:
AUTH_USER_MODEL = 'custom_user.EmailUser'
- Create the database tables.
python manage.py syncdb
Instead of referring to EmailUser
directly, you should reference the user model using get_user_model()
as explained in the Django documentation. For example:
from django.contrib.auth import get_user_model
user = get_user_model().get(email="user@example.com")
When you define a foreign key or many-to-many relations to the EmailUser
model, you should specify the custom model using the AUTH_USER_MODEL
setting. For example:
from django.conf import settings
from django.db import models
class Article(models.Model):
author = models.ForeignKey(settings.AUTH_USER_MODEL)
You can easily extend EmailUser
by inheriting from AbstractEmailUser
. For example:
from custom_user.models import AbstractEmailUser
class MyCustomEmailUser(AbstractEmailUser):
"""
Example of an EmailUser with a new field date_of_birth
"""
date_of_birth = models.DateField()
- Django 1.7 compatible (thanks to j0hnsmith).
- The create_user() and create_superuser() manager methods now accept is_active and is_staff as parameters (thanks to Edil Kratskih).
- AdminSite now works when subclassing AbstractEmailUser (thanks to Ivan Virabyan).
- Updated model changes from Django 1.6.1.
- Django 1.6 compatible (thanks to Simon Luijk).
- Initial release.