Class AbstractUser
An abstract base class implementing a fully featured User model with admin-compliant permissions.
Declaration
source linkDocumentation
Username and password are required. Other fields are optional.
Methods
▶ def clean(self) overrideinherited doc Hook for doing any extra model-wide validation after clean() has been
This method overrides django.contrib.auth.base_user.AbstractBaseUser.clean.
called on every field by self.clean_fields. Any ValidationError raised
by this method will not be associated with a particular field; it will
have a special-case association with the field defined by NON_FIELD_ERRORS.
▷ def email_user(self, subject, message, from_email=None, **kwargs) Send an email to this user.
▷ def get_full_name(self) Return the first_name plus the last_name, with a space in between.