将“此字段为必填项”替换为Django 管理中的消息
有没有办法替换 django admin 中的默认错误消息。我正在使用自定义小部件,因此我有表单,我想知道是否有类似的内容:field_1 = forms.Charfield(widget=X, error_messge='y')
我已经尝试添加 claen_field_1 方法,但看起来当字段为空时不会调用它。任何想法将不胜感激
is there a way to replace the default error message in django admin. I'm using custom widget so I have the form and I was wondering is there something like:field_1 = forms.Charfield(widget=X, error_messge='y')
I already tried to add claen_field_1 method but it looks that it is not called when the field is empty. Any ideas will be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,实际上这是表单功能而不是管理功能;),您可以在任何地方使用它。
有关更多信息,请参阅 django 文档
yes there is and actually this is forms functionality and not admin functionality ;), you can use this anywhere.
for more information see the django docs