aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/comments/posted.html
blob: 07bdb672fef239ec3b74c3632db1054500946e4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block title %}Comment posted successfully{% endblock %}

{% block content %}
<p>Thanks for contributing.</p>

{% if object %}
    <ul>
        <li><a href="{{ object.get_absolute_url }}">View your comment</a></li>
    </ul>
{% endif %}
{% endblock %}