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 %}