65👍
✅
I think, label argument is what you need:
class SendOrderForm(forms.Form):
send_option = forms.ModelChoiceField(queryset=Send.objects.all(), label="Send Options")
Source:stackexchange.com