Add missing comments.html

This commit is contained in:
Thierry Carrez 2013-06-05 15:39:49 +02:00
parent 767a8d630d
commit 87483a2474
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<h4>Comments</h4>
<hr>
{% for comment in comments %}
<p>Comment by <b>{{ comment.author }}</b>
{% if comment.author == proposal.proposer %}<i>[proposer]</i>{% endif %}
{% if comment.author.username == proposal.topic.lead_username %}<i>[topiclead]</i>{% endif %}
on {{ comment.posted_date|date:"Y-m-d G:i O" }}:<br>
{{ comment.content|linebreaks|urlize }}</p>
<br><hr>
{% endfor %}