我正在尝试在表单末尾添加评论部分,以便用户可以输入评论。我正在遵循Django教程的要求:https://docs.djangoproject.com/en/dev/ref/contrib/comments/example/
但我一直收到这个错误:
TemplateSyntaxError
渲染时捕获AttributeError:'ModelFormOptions'对象没有属性'proxy'
任何人都知道为什么?
这是日志:
91 {% load comments %}
92 {% get_comment_count for form as comment_count %}
93 <p>{{ comment_count }} comments have been posted.</p>
94 {% render_comment_list for form %}
95
96 {% get_comment_list for form as comment_list %}
97 {% for comment in comment_list %}
98 <p> Posted by: {{ comment.user_name }} on {{ comment.submit_date }}</p>
99
100 <p>Comment: {{ comment.comment }}</p>
101 {% endfor %}
错误发生在第92行
答案 0 :(得分:0)
标签需要模型实例,而不是表单。