在Django中提交评论后重定向不使用django.contrib.comments.moderation?

时间:2010-11-08 15:29:31

标签: django django-comments

我正在使用django.contrib.comments在博客上启用评论。

我在评论表单中添加了一个隐藏的“下一个”字段,其中包含了我希望用户在提交评论后返回的网址,以便绕过已正常运行的posted.html模板:< / p>

<input name="next" type="hidden" value="{% url single_post slug=post.slug %}" />

然而,在实施评论模式后,如下:

from django.contrib.comments.moderation import CommentModerator, moderator
class PostModerator(CommentModerator):
    email_notification = True

moderator.register(Post, PostModerator)

,有一个错误抱怨文件comments / comment_notification_email.txt丢失了,所以我按如下方式创建了文件:

Comment: http://127.0.0.1{{ comment.get_absolute_url }}
From: {{ comment.person_name }}

-----
{{ comment.comment }}
-----

Admin: http://127.0.0.1/admin/comments/comment/{{comment.id}}/

但是现在,Django抱怨请求URL http://127.0.0.1:8000/comments/post/不存在?如何最好地解决这个问题?

1 个答案:

答案 0 :(得分:0)

在单独的视图中进行重定向解决了我的问题:

urls.py

(r'^comments/post/', 'app.views.comment'),

views.py

def comment(request):
    # Redirecting after comment submission
    return HttpResponseRedirect(request.POST['next'])