如何在Django中向表单添加verbose_name
?
在forms.py中:
class SendOrderForm(forms.Form):
send_option = forms.ModelChoiceField(queryset=Send.objects.all(), verbose_name="Send Options")
这不正确
答案 0 :(得分:45)
我认为,label argument正是您所需要的:
class SendOrderForm(forms.Form):
send_option = forms.ModelChoiceField(queryset=Send.objects.all(), label="Send Options")