我在我的应用程序中设置了django的内置注释,并且我正在使用标记功能。标记工作正常,但模板上显示的“取消”链接会返回以下错误:
could not find http
模板/表格如下:
{% extends "base.html" %}
{% load i18n %}
{% block title %}{% trans "Flag this comment" %}{% endblock %}
{% block content %}
<h3>{% trans "Are you sure you want to flag this comment?" %}</h3>
<br />
<blockquote>{{ comment|linebreaks }}</blockquote>
<form action="." method="post">{% csrf_token %}
{% if next %}<div><input type="hidden" name="next" value="{{ next }}" id="next" /></div>{% endif %}
<p class="submit">
<input type="submit" class="btn btn-danger button-left" name="submit" value="{% trans "Flag" %}" /> or <a href="{{ comment.get_absolute_url }}">cancel</a>
</p>
</form>
{% endblock %}
对此的任何见解将不胜感激。
答案 0 :(得分:0)
我怀疑可能是您的网站设置不正确。检查网站应用程序,看看是否可以在那里进行一些更改以使其正常工作。