Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Django 表单类中有一些布尔字段。我去查询数据,一切正常,但我想用文本或图像替换布尔值。因此,它不是“Item: False”,而是一段自定义文本,或者理想情况下,还有图像或缺少一个来表示 T/F。我四处搜索,看到 Django 的“是”,但 Djangop Forms 没有,哦 GAE。有没有人有这方面的经验?谢谢你。
每个 django 表单都使用默认的 Widget 将表单呈现为 HTML。您可以创建自己的自定义小部件来生成 HTML 以显示您想要的图像。
https://docs.djangoproject.com/en/1.4/ref/forms/widgets/