diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-16 23:34:07 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-16 23:34:07 +0000 |
| commit | a2a7fd0b824c76a6c599b731ca6505873d4195dd (patch) | |
| tree | 23396da33b98a64c10ae4dde5601728fc227b08b | |
| parent | d9e5a4ea5bee99cb3b3d24722e51c56021dd4545 (diff) | |
Added help_text to auth.User.password_md5
git-svn-id: http://code.djangoproject.com/svn/django/trunk@126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/models/auth.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/models/auth.py b/django/models/auth.py index 6743d591ae..7f1a32f2a7 100644 --- a/django/models/auth.py +++ b/django/models/auth.py @@ -36,7 +36,7 @@ class User(meta.Model): meta.CharField('first_name', 'first name', maxlength=30, blank=True), meta.CharField('last_name', 'last name', maxlength=30, blank=True), meta.EmailField('email', 'e-mail address', blank=True), - meta.CharField('password_md5', 'password', maxlength=32), + meta.CharField('password_md5', 'password', maxlength=32, help_text="Use an MD5 hash -- not the raw password."), meta.BooleanField('is_staff', 'staff status', help_text="Designates whether the user can log into this admin site."), meta.BooleanField('is_active', 'active', default=True), |
