In an app I'm working on, I have a model like this:

class Product(models.Model):
    name = models.CharField(...)
    data = models.TextField(...)


As more products are added, I want to restrict which of my users are
allowed to edit each individual product. So maybe I'll create two
products, A and B, with users x, y and z. I'd like to be able to say:

users x and y can edit A
users y and z can edit B

Is there any good way to do this without waiting for the SoC row permissions?

Thanks,
Jay P.

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to