Suppose I have a form field as below:
admin = forms.ModelChoiceField(queryset=Profile.objects.all(),
help_text=_('select an admin for this organization'),
label=_('Organization Admin'),
)
when this form is rendered in a template and I can see a drop-down button on that field and can select an item.
But the number of items is so much that it is very difficult for me to select one.
I want a search option just on top of the drop-down list.
Is it possible? If possible, how?