本文介绍了django admin中的表单字段描述的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如何像下一个示例一样在django admin中为表单字段添加提示?
How to add hint for the form field in django admin like in next example?
(此处: URL 和内容说明在字段下方显示为灰色)
(here: URL and Content descriptions are shown with gray color under field)
推荐答案
在models.py中定义字段时:
When defining your fields in models.py:
myfield = models.CharField(max_length=100, help_text="This is the grey text")
为此链接添加书签:
https://docs.djangoproject.com/en/dev/ref/模型/字段/#help-text
我发现自己一直在引用它(不仅对于help_text,而且还涉及与模型字段有关的所有事情!)
I find myself referring to it all the time (not just for help_text, but for everything to do with model fields)!
这篇关于django admin中的表单字段描述的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!