I am modeling a person like so:
class Person(models.Model):
""" Represent a person who has credentials. The person may have
devices and/or accessories. """
#basic information
name = models.CharField(max_length=50, unique=True)
email = models.CharField(max_length=50, unique=True)
phone_number = PhoneNumberField(unique=True)
But I want to be able to add something like:
/* create admin user with a group priveledge*/
user_account = #link to user account here
I'm doing this because as I add people objects, I want them to have an account with certain privelidges.
Thanks to anyone who can help..