If I have a group instance called students and I wanted to add it to
the user instance bill I would use:
bill.groups.add(students)

If you want to have a permission for a view, you will have to use the
has_perm method that is within the user model (user.has_perm) and check
for the permission you want at the beginning of the view. E.g.:

def view_students(request):
   if not request.user.has_perm("university.view_students"):
      raise PermissionDenied
   ....

Chris


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