diff options
author | mahesh | 2016-04-01 02:14:45 +0530 |
---|---|---|
committer | mahesh | 2016-04-01 02:14:45 +0530 |
commit | 806108aca8fa91849bf10020934dd5d990d3bd50 (patch) | |
tree | 0f274eac0da1f72ee98c216e844fed8e4873e6fa /commentingapp/templates/notified.html | |
parent | 6984fe2bc799df174b0a47bf5d784912f86e0978 (diff) | |
download | Python-TBC-Interface-806108aca8fa91849bf10020934dd5d990d3bd50.tar.gz Python-TBC-Interface-806108aca8fa91849bf10020934dd5d990d3bd50.tar.bz2 Python-TBC-Interface-806108aca8fa91849bf10020934dd5d990d3bd50.zip |
disqus commenting app, which fetches, displays and notifies contributors
Diffstat (limited to 'commentingapp/templates/notified.html')
-rw-r--r-- | commentingapp/templates/notified.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/commentingapp/templates/notified.html b/commentingapp/templates/notified.html new file mode 100644 index 0000000..c062d3f --- /dev/null +++ b/commentingapp/templates/notified.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% block title %} Success {% endblock %} + +{% block content %} + +<body> + +{% csrf_token %} +<h5> {{ notified_comments }} </h5> +<p></p> +<p> <a href = "{% url 'commentingapp.views.commenting' %}"> << Go back to Commenting Page </a></p> + +</body> +{% endblock %} |