How exactly do I add css to a forms.ModelMultipleChoiceField
I tried to pass in attrs={'class' : 'foo'}
But it’s failing saying "__init__() got an unexpected keyword argument 'attrs'"
my_list = forms.ModelMultipleChoiceField(label='List', required=False, queryset=[])
It’s the widget that needs the attrs, not the form field.