Reputation: 6295
Are there any admin extensions to let bulk editing data in Django Admin? (ie. Changing the picture fields of all product models at once. Note that this is needed for a users POV so scripting doesn't count.) Any thoughts on subject welcome.
Upvotes: 5
Views: 9271
Reputation: 1668
With Django 1.1, you can create admin actions which can be applied to multiple entries at once. See the documentation on this subject.
Upvotes: 14
Reputation: 391854
You have SQL. You can write SQL UPDATE statements.
You have Python for writing batch scripts that interact with the Django ORM. This works really, really well for bulk changes.
Upvotes: -3