diff options
Diffstat (limited to 'design/templates/comments/posted.html')
-rw-r--r-- | design/templates/comments/posted.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/design/templates/comments/posted.html b/design/templates/comments/posted.html new file mode 100644 index 0000000..e13288d --- /dev/null +++ b/design/templates/comments/posted.html @@ -0,0 +1,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 %} |