Batchupdate doesn't like prepopulated_fields

Issue #3 resolved
Greg Turner created an issue

Given:

class TagAdmin(BatchUpdateAdmin):
    prepopulated_fields = {"slug": ("name",)}
    batch_update_fields = ('category', )

A 500 error is raised that neither slug nor name are in the form.

Adding these fields as a workaround raises validation messages that the fields are required.

Comments (5)

  1. Log in to comment