[Answered ]-Change default form for field in django

2👍

✅

You should use filter_horizontal in your Admin class for this model.

That would be something like:

class EventAdmin(admin.ModelAdmin):
  filter_horizontal = ('participantes',)

Leave a comment