Ticket #6881: auth_help_text.diff
File auth_help_text.diff, 1.3 KB (added by , 17 years ago) |
---|
-
django/contrib/auth/models.py
134 134 email = models.EmailField(_('e-mail address'), blank=True) 135 135 password = models.CharField(_('password'), max_length=128, help_text=_("Use '[algo]$[salt]$[hexdigest]' or use the <a href=\"password/\">change password form</a>.")) 136 136 is_staff = models.BooleanField(_('staff status'), default=False, help_text=_("Designates whether the user can log into this admin site.")) 137 is_active = models.BooleanField(_('active'), default=True, help_text=_("Designates whether this user can log into th e Django admin. Unselect this instead of deleting accounts."))137 is_active = models.BooleanField(_('active'), default=True, help_text=_("Designates whether this user can log into this site. Unselect this instead of deleting accounts.")) 138 138 is_superuser = models.BooleanField(_('superuser status'), default=False, help_text=_("Designates that this user has all permissions without explicitly assigning them.")) 139 139 last_login = models.DateTimeField(_('last login'), default=datetime.datetime.now) 140 140 date_joined = models.DateTimeField(_('date joined'), default=datetime.datetime.now)