From a80006058c49da8679e46570af69fb9c5d7cff03 Mon Sep 17 00:00:00 2001
From: Thierry Carrez
Date: Wed, 11 Sep 2013 16:02:47 +0200
Subject: [PATCH] Fix links in comments
Comments were linebreaked before they would be urllinkified, which
rendered links unusable.
Change-Id: Id0274c4d116a6426b96fd0925243ea9e81b613b3
---
cfp/templates/comments.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cfp/templates/comments.html b/cfp/templates/comments.html
index 23bc87b..70e0c1f 100644
--- a/cfp/templates/comments.html
+++ b/cfp/templates/comments.html
@@ -5,6 +5,6 @@
{% 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 }}
+{{ comment.content|urlize|linebreaks }}
{% endfor %}