('is_superuser',models.BooleanField(verbose_name='superuser status',help_text='Designates that this user has all permissions without explicitly assigning them.',default=False)),
('username',models.CharField(error_messages={'unique':'A user with that username already exists.'},max_length=254,verbose_name='username',validators=[django.core.validators.RegexValidator('^[\\w.@+-]+$','Enter a valid username. This value may contain only letters, numbers and @/./+/-/_ characters.')],unique=True,help_text='Required. 254 characters or fewer. Letters, digits and @/./+/-/_ only.')),
('is_staff',models.BooleanField(verbose_name='staff status',help_text='Designates whether the user can log into this admin site.',default=False)),
('is_active',models.BooleanField(verbose_name='active',help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.',default=True)),
('groups',models.ManyToManyField(related_name='user_set',to='auth.Group',blank=True,verbose_name='groups',related_query_name='user',help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.')),
('user_permissions',models.ManyToManyField(related_name='user_set',to='auth.Permission',blank=True,verbose_name='user permissions',related_query_name='user',help_text='Specific permissions for this user.')),