From d9f51299809bfb6b3ac589b7c42016d0ef240299 Mon Sep 17 00:00:00 2001 From: lxf Date: Sat, 6 Nov 2021 09:42:47 -0400 Subject: moved templates to top level directory --- templates/comments/list.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 templates/comments/list.html (limited to 'templates/comments/list.html') diff --git a/templates/comments/list.html b/templates/comments/list.html new file mode 100644 index 0000000..7c43a9a --- /dev/null +++ b/templates/comments/list.html @@ -0,0 +1,27 @@ +{% load gravatar_local %} +{% load typogrify_tags %} +{% load markdown%} +{% load bleach_tags %} +{% load nofollow %} +{% load comments %} +
+ {% for comment in comment_list %} +
+
+ + {%if comment.url %}{{comment.name}}{% else %}{{comment.name}}{%endif%} + {{comment.submit_date|date:"F d, Y"}} at {{comment.submit_date|date:"g:i a"}} +
+ +
+ {% if comment.user_email == "sng@luxagraf.net" %} + {{comment.comment|markdown|safe|smartypants}} + {%else%} + {{comment.comment|markdown|bleach|nofollow|safe|smartypants}} + {%endif%} +
+
+ {% endfor %} +
-- cgit v1.2.3-70-g09d2