From a2a7fd0b824c76a6c599b731ca6505873d4195dd Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 16 Jul 2005 23:34:07 +0000 Subject: [PATCH] Added help_text to auth.User.password_md5 git-svn-id: http://code.djangoproject.com/svn/django/trunk@126 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/models/auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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),