如何将verbose_name添加到表单

时间:2012-11-06 09:31:59

标签: django

如何在Django中向表单添加verbose_name

在forms.py中:

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

这不正确

1 个答案:

答案 0 :(得分:45)

我认为,label argument正是您所需要的:

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