Hi, What I want to do is to let users access some views but not others. Users can fit in groups. I've not set up the admin interface for this package because I don't find it useful for my purpose, at least yet.
Users can already register themselves for the site. But they will only be able to access this package, and others, after I give them permission to it (either directly or by group membership). I've added the decorator user_passes_test that prevents any user to access the view that has no access. At the present time, no user has access besides the superuser. I've read the authentication.txt from beggining to the end, but couldn't find the way to assign permissions to individual users or to groups. I really miss a tutorial about this subject. After trying to set permissions through user and group instances' methods, all failed, I came across the Permission object, and found out something else that I don't understand either: from the manage.py shell: >>> from django.contrib.auth.models import Permission >>> p = Permission(codename='subsidios.pode_consultar') >>> p.codename 'subsidios.pode_consultar' >>> p.save() from the Intac class of the subsidios package: class Intac: (...) class Meta: permissions = (("pode_consultar", "Pode consultar"),) This is what I get from the auth_permission table in postgreSQL: # select * from auth_permission; 74 | Pode consultar | pode_consultar | 32 75 | | subsidios.pode_consultar | The line 74 (origined in the Intac class model) doesn't have the package name before the permission codename. Are both entries correct? What I really need is that someone could show me an example of: - assigning a user to a group; - assign a user permission to a view; - assign a group permission to a view. Sorry if this is a very trivial problem, but I really need an example to help understand how this works. Luis P. Mendes --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---