37,741
社区成员
发帖
与我相关
我的任务
分享TemplateSyntaxError at /detail/1/
Invalid block tag: 'comment_form', expected 'endblock' 或 'endblock content'
{% get_comment_list for messageboard.msg msg.id as comment_list %}
{% for comment in comment_list %}
<div class="comment">
<p>评论人:<b>{{comment.user.username}}</b> 评论时间:{{comment.submit_date|date:"Y-m-d H:i"}} IP地址:{{comment.ip_address}}</P>
{{comment.comment|urlizetrunc:400|linebreaks}}
</div>
{% endfor %}
{% comment_form for messageboard.msg msg.id %}
from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
TEMPLATE_CONTEXT_PROCESSORS += ('django.core.context_processors.request',)