{% extends "base.html" %} {% from "_macros.html" import modal %} {% block extra_head %} {% endblock %} {% block content %}
← Back to Feed
{{ author['username'] if author else '?' }}
{{ 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 %}
{% set _uid = post['uid'] %}{% set _my_vote = my_vote %}{% set _count = post.get('stars', 0) %}{% include "_post_votes.html" %} {% if user and post['user_uid'] == user['uid'] %}
{% endif %}
{% if user and post['user_uid'] == user['uid'] %} {% call modal('edit-post-modal', 'Edit Post') %}
{% set _topics = topics %}{% set _selected = post['topic'] %}{% include "_topic_selector.html" %}
{% include "_attachment_form.html" %}
{% endcall %} {% endif %} {% with target_uid=post['uid'], target_type="post" %} {% include "_comment_section.html" %} {% endwith %} {% if related_posts %} {% endif %}
{% endblock %}