{% if node.is_reported %}
{{ node.body|markdown }}
{% else %}
{{ node.body|markdown }}
{% endif %}
{% if node.message_set.all|length %}
{% endif %}
{% with node.attachments.all as attachments %}
{% for a in attachments %}
{{ a }}
{% endfor %}
{% endwith %}
{% if not node.is_leaf_node %}
{{ children }}
{% endif %}
{% for t in node.labels.all %}
{{ t.title }}
{% endfor %}