burke-software / django-mass-edit

Make bulk changes in the Django admin interface
155 stars 68 forks source link

Allow ModelAdmin to exclude some fields from mass-modification #11

Closed cuchac closed 11 years ago

cuchac commented 11 years ago

Introduces massadmin_exclude field of specific model ModelAdmin, that could be set to exclude some fields from mass-modification.

Example usage:

class PollAdmin(admin.ModelAdmin):
    massadmin_exclude = ['user', ]
bufke commented 11 years ago

Also thanks. I'll add some documentation about this too.