[Django]-How to add verbose_name to forms

65👍

I think, label argument is what you need:

class SendOrderForm(forms.Form):
   send_option = forms.ModelChoiceField(queryset=Send.objects.all(), label="Send Options")

Leave a comment