I want to create a model system where a user can own a record (i.e.
foreign key to users table) and those records are only seen by that
user OR the user can choose to make the record public (boolean field
in model) that allows others to view-only the record.

I was trying to come up with some simple model managers to do this,
but wanted to get some input first.

a Model something like:

class Person(models.Model):
    first_name = models.CharField(max_length=30)
    last_name = models.CharField(max_length=30)
    owner = models.ForeignKey(user)
    public = models.booleanfield()

Basically, this will be a site where users can keep track of their
stuff, but allow others to view what they have too (the person model
isn't what I'm going to use, just an example).

Any thoughts?

Thanks
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to