('is_superuser',models.BooleanField(default=False,help_text='Designates that this user has all permissions without explicitly assigning them.',verbose_name='superuser status')),
('is_dj',models.BooleanField(default=False,help_text='Designates whether the user is the automated dj account or is a real person account.',verbose_name='dj status')),
('is_staff',models.BooleanField(default=False,help_text='Designates whether the user can log into the admin site.',verbose_name='staff status')),
('is_active',models.BooleanField(default=True,help_text='Designates whether the user should be treated as active. Unselect this instead of deleting accounts.',verbose_name='active')),
('groups',models.ManyToManyField(blank=True,help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.',related_name='user_set',related_query_name='user',to='auth.Group',verbose_name='groups')),
('user_permissions',models.ManyToManyField(blank=True,help_text='Specific permissions for this user.',related_name='user_set',related_query_name='user',to='auth.Permission',verbose_name='user permissions')),