diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-04-13 01:50:29 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-04-13 01:50:29 +0000 |
| commit | 6dfe245f02d62ade0aa1135893e0f074de4e8eb1 (patch) | |
| tree | d1e972d2b73d05006cdff51d95523543f74fb91d | |
| parent | 939d9e1be60019df912e7f45ee3474b8ae0cdc52 (diff) | |
Updated the inline help text for User.is_active.
Fixed #6881. Refs #7011.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7414 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/contrib/auth/models.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/django/contrib/auth/models.py b/django/contrib/auth/models.py index 4b1590264b..c8670655d4 100644 --- a/django/contrib/auth/models.py +++ b/django/contrib/auth/models.py @@ -134,7 +134,7 @@ class User(models.Model): email = models.EmailField(_('e-mail address'), blank=True) password = models.CharField(_('password'), max_length=128, help_text=_("Use '[algo]$[salt]$[hexdigest]' or use the <a href=\"password/\">change password form</a>.")) is_staff = models.BooleanField(_('staff status'), default=False, help_text=_("Designates whether the user can log into this admin site.")) - is_active = models.BooleanField(_('active'), default=True, help_text=_("Designates whether this user can log into the Django admin. Unselect this instead of deleting accounts.")) + is_active = models.BooleanField(_('active'), default=True, help_text=_("Designates whether this user should be treated as active. Unselect this instead of deleting accounts.")) is_superuser = models.BooleanField(_('superuser status'), default=False, help_text=_("Designates that this user has all permissions without explicitly assigning them.")) last_login = models.DateTimeField(_('last login'), default=datetime.datetime.now) date_joined = models.DateTimeField(_('date joined'), default=datetime.datetime.now) @@ -226,7 +226,7 @@ class User(models.Model): for backend in auth.get_backends(): if hasattr(backend, "get_all_permissions"): permissions.update(backend.get_all_permissions(self)) - return permissions + return permissions def has_perm(self, perm): """ @@ -238,11 +238,11 @@ class User(models.Model): # Inactive users have no permissions. if not self.is_active: return False - + # Superusers have all permissions. if self.is_superuser: return True - + # Otherwise we need to check the backends. for backend in auth.get_backends(): if hasattr(backend, "has_perm"): |
