Re: view permission on django admin

2010-05-25 Thread Alex Robbins
If you want something like the admin, that lets users view objects
from the database but not edit them, you could check out the
databrowse contrib app. It is kind of a read-only admin.

http://docs.djangoproject.com/en/dev/ref/contrib/databrowse/

Hope that helps,
Alex

On May 24, 3:49 pm, rahul jain  wrote:
> Hi Django,
>
> I know this has been discussed lot of times but not implemented on
> admin because django developers think that django admin will not be
> just used for viewing.
>
> Anyways, I need it for my model.
>
> I went through the path but was not able to solve this problem.
>
> http://code.djangoproject.com/ticket/7150
>
> I think this patch is for some old code
>
> Here what its missing
>
> a/django/contrib/admin/sites.py
> old     new    
> 281     281                         'add': 
> model_admin.has_add_permission(request),
> 282     282                         'change':
> model_admin.has_change_permission(request),
> 283     283                         'delete':
> model_admin.has_delete_permission(request),
>         284                         'view': 
> model_admin.has_view_permission(request),
> 284     285                     }
> 285     286    
> 286     287                     # Check whether user has any perm for this 
> module.
>
> I checked sites.py but none of the above exists now.
>
> Anyone know the recent patch for this.
>
> Thanks.
>
> --RJ
>
> --
> 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 
> athttp://groups.google.com/group/django-users?hl=en.

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



view permission on django admin

2010-05-24 Thread rahul jain
Hi Django,

I know this has been discussed lot of times but not implemented on
admin because django developers think that django admin will not be
just used for viewing.

Anyways, I need it for my model.

I went through the path but was not able to solve this problem.

http://code.djangoproject.com/ticket/7150

I think this patch is for some old code

Here what its missing

a/django/contrib/admin/sites.py
old new 
281 281 'add': 
model_admin.has_add_permission(request),
282 282 'change':
model_admin.has_change_permission(request),
283 283 'delete':
model_admin.has_delete_permission(request),
284 'view': 
model_admin.has_view_permission(request),
284 285 }
285 286 
286 287 # Check whether user has any perm for this 
module.

I checked sites.py but none of the above exists now.

Anyone know the recent patch for this.

Thanks.

--RJ

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