mirror of
				https://github.com/django/django.git
				synced 2025-10-31 01:25:32 +00:00 
			
		
		
		
	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:
		| @@ -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), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user