module documentation

Undocumented

Class AbstractUser An abstract base class implementing a fully featured User model with admin-compliant permissions.
Class AnonymousUser Undocumented
Class Group Groups are a generic way of categorizing users to apply permissions, or some other label, to those users. A user can belong to any number of groups.
Class GroupManager The manager for the auth's Group model.
Class Permission The permissions system provides a way to assign permissions to specific users and groups of users.
Class PermissionManager Undocumented
Class PermissionsMixin Add the fields and methods necessary to support the Group and Permission models using the ModelBackend.
Class User Users within the Django authentication system are represented by this model.
Class UserManager No class docstring; 0/1 class variable, 1/4 method documented
Function update_last_login A signal receiver which updates the last_login date for the user logging in.
Function _user_get_permissions Undocumented
Function _user_has_module_perms A backend can raise `PermissionDenied` to short-circuit permission checking.
Function _user_has_perm A backend can raise `PermissionDenied` to short-circuit permission checking.
def update_last_login(sender, user, **kwargs): (source)

A signal receiver which updates the last_login date for the user logging in.

def _user_get_permissions(user, obj, from_name): (source)

Undocumented

def _user_has_module_perms(user, app_label): (source)

A backend can raise `PermissionDenied` to short-circuit permission checking.

def _user_has_perm(user, perm, obj): (source)

A backend can raise `PermissionDenied` to short-circuit permission checking.