diff --git a/funding/templates/proposal/macros/comment.html b/funding/templates/proposal/macros/comment.html new file mode 100644 index 0000000..98e50cc --- /dev/null +++ b/funding/templates/proposal/macros/comment.html @@ -0,0 +1,57 @@ +{% macro comment_entry(c, proposal) %} +
+
+
+ + + {{c.user.username}} + {% if c.user.username == proposal.user.username %} + [op] + {% endif %} + {% if c.user.admin %} + [admin] + {% endif %} + + + + + {{c.date_added.strftime('%Y-%m-%d %H:%M')}} + +
+ {{c.message}} +
+ {% if not c.automated %} + reply + {% endif %} + + {% for _c in c.comments %} + + {% endfor %} +
+
+{% endmacro %} \ No newline at end of file