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
...
Source:stackexchange.com