('username',models.CharField(validators=[django.core.validators.RegexValidator('^[\\w.-]+$','Enter a valid username.','invalid')],help_text='Required. 64 characters or fewer. Letters, digits and ./-/_ only.',unique=True,max_length=32,verbose_name='username')),
('is_superuser',models.BooleanField(default=False,help_text='Designates that this user has all permissions without explicitly assigning them.',verbose_name='superuser status')),
('is_active',models.BooleanField(default=True,help_text='Designates whether this account should be treated as active. Unselect this instead of deleting accounts.',verbose_name='active')),