def get_permission_object(perm_label):
    from django.contrib.contenttypes.models import ContentType
    from django.contrib.auth.models import Permission
    app_label,perm_code_name = perm_label.split('.')
    content_type = ContentType.objects.get(app_label=app_label)
    perm = Permission.objects.get
(content_type=content_type,codename=perm_code_name)
    return perm

def add_perm_to_user(user,perm_label):
    user.user_permissions.add(get_permission_object(perm_label))
    user.save()
    return user

>>> u=User.objects.get(username="test_ader1")
>>> u=add_perm_to_user(u,'your_app_label.your_perm_label')

your_app_label.your_perm_label ==> in your case,  is  "appname.total"



On Oct 14, 2:58 am, Михаил Лукин <mihail.lu...@googlemail.com> wrote:
> Try ./manage reset auth
>
>
>
> On Tue, Oct 13, 2009 at 1:08 PM, elminio <wgruszczyn...@gmail.com> wrote:
>
> > hi,
>
> > It didnt help :/
>
> > On Oct 9, 10:33 am, "Bogdan I. Bursuc" <bogdanbursu...@gmail.com>
> > wrote:
> > > Try to delete the auth_permissions table the sync db
> > > see if it helps
>
> > > On Fri, 2009-10-09 at 01:29 -0700,elminiowrote:
> > > > Up Up
>
> > > > On Oct 8, 12:10 pm,elminio<wgruszczyn...@gmail.com> wrote:
> > > > > Hi,
> > > > > I've extended my model with new permission.
>
> > > > >   class Meta:
> > > > >         permissions = (
> > > > >             ("total", "total"),
> > > > >         )
>
> > > > > After that I mafe manage.py syncdb. But after that when I wanted to
> > > > > add user new privilage just created there wasn't it in admin panel
> > > > > where you can choose permissions add and remove from user.
>
> > > > > thanks for help
>
> --
> regards,
> Mihail
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to