Added help_text to auth.User.password_md5

git-svn-id: http://code.djangoproject.com/svn/django/trunk@126 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-07-16 23:34:07 +00:00
parent d9e5a4ea5b
commit a2a7fd0b82
1 changed files with 1 additions and 1 deletions

View File

@ -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),