Django

Code

Ticket #2177: posted.html

File posted.html, 361 bytes (added by kanashii@kanashii.ca, 2 years ago)
Line 
1 {% extends "base.html" %}
2
3 {% load i18n %}
4
5 {% block title %}{% trans "Comment posted" %} | {{ block.super }}{% endblock %}
6
7 {% block content %}
8
9 <h1>{% trans "Comment posted successfully" %}</h1>
10
11 <p>{% trans "Thanks for contributing" %}.{% if object %} <a href="{{ object.get_absolute_url }}">{% trans "View your comment" %}</a>.{% endif %}</p>
12 {% endblock %}