Ok, I think your answer is here on creating permissions:
        http://docs.djangoproject.com/en/dev/topics/auth/#id1
in the ModelAdmin, override the `save_model` method and check the
current user permission:
        request.user.has_perm('permission_name')
for more on checking permission see this:
        http://docs.djangoproject.com/en/dev/topics/auth/

On Tue, 2009-10-06 at 01:21 -0700, elminio wrote:
> not exactly,
> for example I want to make custom permission which enables user to
> change one field in model but only to 5 letter length word while other
> users may change that field to 6 letters length word. Thats sily
> example but in some cases it may be useful.
> 
> 
> On Oct 6, 10:19 am, "Bogdan I. Bursuc" <bogdanbursu...@gmail.com>
> wrote:
> > i think you want to create a group.
> >
> > On Tue, 2009-10-06 at 01:05 -0700, elminio wrote:
> > > Hi,
> > > In admin Panel I can choose groups and give them specified
> > > permissions. For example
> >
> > > admin | log entry | can add log entry
> >
> > > And I would like to create my own type of permission which for example
> > > is called all and gives to the specified user permission to do
> > > whatever he likes, and other permission moderator which gives for
> > > example only half. What I mean is there any way to write custom
> > > permission types.
> >
> > > thanks for response
> >
> >
> > 


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