I want to create another model only for the staff and not for the admin or normal users. The model will have some other data that will also be visible for the other users but the other users will not require any if this data.
Also, the staff members will have another separate app for themselves.
How do I link another model to each user that has a staff permission?
class Staff(models.Model):
user = models.OneToOneField(User, on_delete=models.CASCADE)
# Not sure how i'm supposed to link only the staff members.