Re: read only django admin

2010-01-29 Thread aledr
On Fri, Jan 29, 2010 at 12:55 AM, zweb wrote: > Is it possible to have a read only django admin, ie user cannot add, > delete or update. User can only view data. > > or may be one user can be view only and other user has add/delete / > update as well in Django admin. > >

Re: read only django admin

2010-01-29 Thread Alex Robbins
http://docs.djangoproject.com/en/dev/ref/contrib/databrowse/ On Jan 28, 8:55 pm, zweb wrote: > Is it possible to have a read only django admin, ie user cannot add, > delete or update. User can only view data. > > or may be one user can be view only and other user has add/delete / &g

Re: read only django admin

2010-01-28 Thread Ian
this code has some issues but the idea sound, see if it helps http://bitbucket.org/stephrdev/django-readonlywidget/ On Jan 28, 6:55 pm, zweb wrote: > Is it possible to have a read only django admin, ie user cannot add, > delete or update. User can only view data. > > or may be one use

Re: read only django admin

2010-01-28 Thread Mike Ramirez
On Thursday 28 January 2010 21:04:15 chefsmart wrote: > >admin is not for ordinary users who you do not trust to mess up the data. > > Whether you provide such functionality outside of the admin or inside > it, you are using the same django.contrib.auth, so "trust" is not the > reason why you cann

Re: read only django admin

2010-01-28 Thread chefsmart
>admin is not for ordinary users who you do not trust to mess up the data. Whether you provide such functionality outside of the admin or inside it, you are using the same django.contrib.auth, so "trust" is not the reason why you cannot do what you want to do within django.contrib.admin. If the pe

Re: read only django admin

2010-01-28 Thread Kenneth Gonsalves
On Friday 29 Jan 2010 10:01:15 am chefsmart wrote: > > The Django administrative interface is there to allow administrative > > users to administer data. > > But yes, you can do what you want if you use the permissions system > together with the groups system correctly. That is, create groups and

Re: read only django admin

2010-01-28 Thread chefsmart
groups. Then create users and assign your users to the groups you created earlier. Regards. On Jan 29, 8:03 am, James Bennett wrote: > On Thu, Jan 28, 2010 at 8:55 PM, zweb wrote: > > Is it possible to have a read only django admin, ie user cannot add, > > delete or update. Us

Re: read only django admin

2010-01-28 Thread James Bennett
On Thu, Jan 28, 2010 at 8:55 PM, zweb wrote: > Is it possible to have a read only django admin, ie user cannot add, > delete or update. User can only view data. > > or may be one user can be view only and other user has add/delete / > update as well in Django admin. The Django

read only django admin

2010-01-28 Thread zweb
Is it possible to have a read only django admin, ie user cannot add, delete or update. User can only view data. or may be one user can be view only and other user has add/delete / update as well in Django admin. How to do that? -- You received this message because you are subscribed to the