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