Add missing comments.html
This commit is contained in:
parent
767a8d630d
commit
87483a2474
10
cfp/templates/comments.html
Normal file
10
cfp/templates/comments.html
Normal 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 %}
|
Loading…
x
Reference in New Issue
Block a user