[Answered ]-Django use multiple widgets in form field

1👍

If you want a Select field with custom classes in it you just have to do the following:
widget=forms.Select(attrs={'class': 'select is-medium'})

In case you want to have two widgets in one field check Django MultiWidget.

👤Hagyn

Leave a comment