From 87483a247463ffe8a430a0742a7f3ccf21062e1f Mon Sep 17 00:00:00 2001 From: Thierry Carrez Date: Wed, 5 Jun 2013 15:39:49 +0200 Subject: [PATCH] Add missing comments.html --- cfp/templates/comments.html | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 cfp/templates/comments.html diff --git a/cfp/templates/comments.html b/cfp/templates/comments.html new file mode 100644 index 0000000..23bc87b --- /dev/null +++ b/cfp/templates/comments.html @@ -0,0 +1,10 @@ +

Comments

+
+{% for comment in comments %} +

Comment by {{ comment.author }} +{% if comment.author == proposal.proposer %}[proposer]{% endif %} +{% if comment.author.username == proposal.topic.lead_username %}[topiclead]{% endif %} +on {{ comment.posted_date|date:"Y-m-d G:i O" }}:
+{{ comment.content|linebreaks|urlize }}

+

+{% endfor %}