blob: e13288d00b92266ed8ebc192a0f2d26840ca8bde (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% extends "comments/base.html" %}{% load i18n %}
{% block title %}{% trans "Thanks for commenting" %}{% endblock %}
{% block extrahead %}
{{ block.super }}
<meta http-equiv="Refresh" content="5; url={{ comment.content_object.get_absolute_url }}#c{{ comment.id }}" />
{% endblock %}
{% block content %}
<h2>{% trans "Thanks for posting your comment" %}</h2>
<p>
{% blocktrans %}
We have received your comment, and posted it on the web site.<br/>
You will be sent back to the article...
{% endblocktrans %}
</p>
{# Use identical formatting to normal comment list #}
<div id="comments">
{% include "comments/comment.html" %}
</div>
<p><a href="{{ comment.content_object.get_absolute_url }}#c{{ comment.id }}">{% trans "Back to the article" %}</a></p>
{% endblock %}
|