{{
+
+
+
+{{ comments.total }} Comments
+
+
+{% for comment in comments.data %}
+
+ {% if not comment.isDeleted %}
+ {{ comment.account.displayName }}
+
+ {{ comment.text }}
+
+ {% else %}
+
+ Unknown
+
+ Deleted Comment
+
+ {% endif %}
+
+ {% if comment.totalReplies == 1 %}
+ 1 Reply
+ {% else %}
+ {{ comment.totalReplies }} Replies
+ {% endif %}
+
+
+
+{% endfor %}
+
{% endblock %}