I am trying to use ModelAdmin.filter_horizontal and ModelAdmin.filter_vertical for the ManyToMany field instead of selecting multiple fields, but all I get is: 
My model:
class Title(models.Model):
My admin:
class TitleAdmin(admin.ModelAdmin): prepopulated_fields = {"slug": ("original_name",)} filter_horizontal = ("production_companies",) radio_fields = {"state": admin.HORIZONTAL}
javascripts load OK, I really don't understand what is going on. Django Configuration 1.1.1.
python django django-admin filtering
negus
source share