29

如何verbose_name在 Django 中添加表单?

在 forms.py 中:

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

这是不正确的

4

1 回答 1

62

我认为,标签参数是您需要的:

class SendOrderForm(forms.Form):
   send_option = forms.ModelChoiceField(queryset=Send.objects.all(), label="Send Options")
于 2012-11-06T09:35:39.853 回答