{{ author['username'] if author else 'Unknown' }}
{% if author and author.get('role') %}
· {{ author['role'] }}
{% endif %}
{{ time_ago }}
{{ post['topic'] }}
{% if post.get('title') %}
{{ post['title'] }}
{% endif %}{{ post['content'] }}
{% if attachments %}
{% include "_attachment_display.html" %}
{% endif %}
{{ post.get('stars', 0) }}
{% if user and post['user_uid'] == user['uid'] %}
{% endif %}
Related Discussions