Hi everybody!

In my project I have 3 kind of users. During registration I create a
user object and add them to the right group.
In the admin site it's possible to add some permissions to the
different groups but I'm not sure this is the right way to do what I
want.

For example I have an app Polls which contains a model 'Poll' and a
model 'Question'. In the admin I found it's possible to add the
permission "polls | poll | Can add poll" to a certein user group.

Now in the view where I create the form to add a poll i want to co
something like:

@permission_required('can_add_poll') # ???
def add_poll(request):
    ...

What is the correct syntax? or isn't this the best practice to
accomplish this?
I'm kind of confused because the admin panel just show the permissions
based on the app's models.

I hope I make some sence here :)

Thanks in advance!

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.

Reply via email to