Re: Editing content in Django Admin change-list

2008-07-04 Thread Itai Tavor
On 03/07/2008, at 11:23 AM, David Melton wrote: > > I would like to be able to change the status of an item (Yes/No Field) > in a list of items from the change-list view without having to open > the item and change it within the change form. Is there an easy way > (built in) to the Django admin

Re: Editing content in Django Admin change-list

2008-07-03 Thread Alex Slesarev
You can change required admin templates and tags. Though it is not so difficult, it is not so good, because it will touch ALL applications and models. Malcolm is right - better to create own custom page, see http://new.djangobook.com/en/1.0/chapter17/ -- Best regards, Alex Slesarev.

Re: Editing content in Django Admin change-list

2008-07-02 Thread Malcolm Tredinnick
On Wed, 2008-07-02 at 18:23 -0700, David Melton wrote: > I would like to be able to change the status of an item (Yes/No Field) > in a list of items from the change-list view without having to open > the item and change it within the change form. Is there an easy way > (built in) to the Django

Editing content in Django Admin change-list

2008-07-02 Thread David Melton
I would like to be able to change the status of an item (Yes/No Field) in a list of items from the change-list view without having to open the item and change it within the change form. Is there an easy way (built in) to the Django admin framework to allow this?