Re: published permission

2007-03-01 Thread Nathan R. Yergler
> > All what i want is to make the published field to appear for certain > user only in the admin interface > is there in way to do that with django pleasee > So you want to allow a group of users to edit the DonorProfile, but only select users within that group may edit the published field?

Re: published permission

2007-02-28 Thread James Bennett
On 2/28/07, Mary <[EMAIL PROTECTED]> wrote: > All what i want is to make the published field to appear for certain > user only in the admin interface There is currently no way to do this without essentially rewriting the entire admin interface; it would be better to write your own views which han

Re: published permission

2007-02-28 Thread Guillermo Fernandez Castellanos
Hi, As far as I know, you can not do it. You are better using the generic views and crafting an add/update view of your own. Hope it helps, G On 2/28/07, Mary <[EMAIL PROTECTED]> wrote: > > Please any help will be appreciated i have a very soon deadline :( > > Thank you in advance; > Mary Ade

Re: published permission

2007-02-28 Thread Mary
Please any help will be appreciated i have a very soon deadline :( Thank you in advance; Mary Adel On Feb 28, 6:31 pm, "Mary" <[EMAIL PROTECTED]> wrote: > Here is my model : > from django.db import models > from django.contrib.auth.models import User > from hsf.middleware import threadlocals > >

published permission

2007-02-28 Thread Mary
Here is my model : from django.db import models from django.contrib.auth.models import User from hsf.middleware import threadlocals class DonorProfile(models.Model): owner = models.ForeignKey(User,related_name="owner",blank=True, editable=False) last_edited_by = models.ForeignKey(User,re