X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/8ad5847821fd7e03f3216e154c06f24d67af89f1..f97a419d58e6b750a6d819096c7590910c4b6209:/sommitrealweird/blog/templates/blog/single_entry_rst.html diff --git a/sommitrealweird/blog/templates/blog/single_entry_rst.html b/sommitrealweird/blog/templates/blog/single_entry_rst.html index d8dbd10..2536c75 100644 --- a/sommitrealweird/blog/templates/blog/single_entry_rst.html +++ b/sommitrealweird/blog/templates/blog/single_entry_rst.html @@ -1,6 +1,7 @@ {% extends "base.html" %} -{% load markup %} +{% load xhtml11rst %} +{% load comments %} {% block content %}

{{ entry.title }}

@@ -22,6 +23,22 @@ {% endif %} {% endfor %} {% endif %} - permalink + {% get_comment_count for entry as comment_count %} + | permalink | Comments: {{ comment_count }}

+{% if comment_count %} +
+ + {% get_comment_list for entry as comment_list %} + {% for comment in comment_list %} +
+

{{ comment.user_name }} - {{ comment.submit_date|date:"Y-m-d H:i" }}

+ {{ comment.comment }} +
+ {% endfor %} +
+{% endif %} +
+ {% render_comment_form for entry %} +
{% endblock %}