Django 评论的自定义模板/表单
我如何为内置的 Django 评论框架制作自己的自定义模板/表单?
How would I make my own custom templates/forms for the built in Django Comments Framework?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只想覆盖(特定)模板,请将它们放入 templates/comments 中(这种技术不仅对 contrib.comments 有效,而且对 所有可重用应用 包括 Django 的管理。)。
如果您想编辑内置表单,您必须如上所述扩展 contrib.comments 和
If you just want to override (specific) templates put them in templates/comments (a technique not only valid for contrib.comments but for all reusable apps including Django's admin.).
If you want to edit the builtin forms you have to extend contrib.comments as mentioned and explained in the docs.