Changeset 8293
- Timestamp:
- 08/10/08 23:30:30 (4 months ago)
- Files:
-
- django/trunk/django/contrib/auth/models.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/contrib/auth/models.py
r8246 r8293 132 132 Username and password are required. Other fields are optional. 133 133 """ 134 username = models.CharField(_('username'), max_length=30, unique=True, validator_list=[validators.isAlphaNumeric],help_text=_("Required. 30 characters or fewer. Alphanumeric characters only (letters, digits and underscores)."))134 username = models.CharField(_('username'), max_length=30, unique=True, help_text=_("Required. 30 characters or fewer. Alphanumeric characters only (letters, digits and underscores).")) 135 135 first_name = models.CharField(_('first name'), max_length=30, blank=True) 136 136 last_name = models.CharField(_('last name'), max_length=30, blank=True)
