[Answered ]-Django autocomplete light Select2 widget not appearing

1👍

You are not passing your form class to the view, just passing fields means that the form you are using is just an auto-generated ModelForm without your custom widget

class CreateEntry(LoginRequiredMixin, generic.CreateView):
    model = JournalEntry
    form_class = JournalForm

    ...

Leave a comment