lud0h
lud0h

Reputation: 2390

Django multi-model update in Admin?

How can I select multiple items from an admin view and create a custom action?

Scenario: We need to select a set of books and assign set of categories (from a list) and assign them to them.

Is it possible to achieve this in Django Admin?

Thanks.

Upvotes: 0

Views: 387

Answers (2)

lud0h
lud0h

Reputation: 2390

We ended up doing a custom view and works fine.

Upvotes: 0

programmersbook
programmersbook

Reputation: 4104

already included in django: http://docs.djangoproject.com/en/dev/ref/contrib/admin/actions/

Upvotes: 2

Related Questions