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