Django 中 UserProfileForm 的自定义标签
我使用 django.db 下的 UserProfileForm 类来获取 UserProfile 模型类并将其转换为表单。目前,表单元素的标签是基础数据库表的列名称。我想知道是否有一种方法可以自定义标签?
谢谢, 蒂诺
I'm using the UserProfileForm class under django.db to take the UserProfile model class and turn it into a form. Currently, the labels for the form elements are the column names of the underlying db table. I'm wondering if there is a way that I can customize the labels?
Thanks,
Tino
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你的意思是使用 django.forms.ModelForm 的模型表单。您可以向 UserProfileModel 添加详细名称,也可以在 ModelForm 中使用标签 arg,如下所示:
http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#a-full-example
http://docs.djangoproject.com/en/dev/ref/forms/接口/
I think you mean a model form using django.forms.ModelForm. You can add a verbose name to your UserProfileModel, or you can use the label arg in your ModelForm like so:
http://docs.djangoproject.com/en/dev/topics/forms/modelforms/#a-full-example
http://docs.djangoproject.com/en/dev/ref/forms/api/