{{ p.title }}
{% if current_user.is_administrator and p.report_count() %}
{% call callout('spoiler', 'error') %}
{{ p.report_count() }} reports.
Take action
{% endcall %}
{% endif %}
{% if p.is_removed %}
{% call callout('delete', 'error') %}
This post has been removed
{% endcall %}
{% endif %}
{{ p.text_content | to_markdown }}
{{ feed_upvote(p.id, p.upvotes(), p.upvoted_by(current_user.user)) }}
{{ comment_count(p.comment_count()) }}
{% if p.author_id == current_user.id %}
- Edit
{% else %}
- Report
{% endif %}
{{ comment_area(p) }}
{% for comment in comments %}-
{{ single_comment(comment) }}
{# if comment.children %}
{{ comment_tree(comment) }}
{% endif #}
{% endfor %}