>
>
> > On Jun 17, 7:41 am, pagetribe <pagetribem...@gmail.com> wrote:
>
> > > Hi,
>
> > > I have been creating a gallery, which has albums. I would like to
> > > restrict the albums, say album1 to a set of users, say userA and userB
> > > and album2 to userC. So userA & userB cannot view album2 and userC
> > > cannot view album1.
>
> > > From the documentation it says: "Permissions are set globally per type
> > > of object, not per specific object instance." So what is the best way
> > > to achieve the above if it is not possible to set permissions by
> > > instance?
>
> > Are you limited to using the built-in admin screens or do you mind
> > creating your own views?
> I would prefer my own views.
Then it's very simple: just create your own permissions within your
album Model. For example:
class Album(models.Model):
<snip>...
allowed_users = models.ManyToManyField(User)
Then add your views that populate the allowed_users field for each
album. And when you retrieve an Album for a logged in user add a
filter to your queryset to check that the user is in allowed_users.
-RD
--~--~---------~--~----~------------~-------~--~----~
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
django-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---