{% extends "base.html" %} {% 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 user and post['user_uid'] == user['uid'] %}
{% endif %}
{% if user and post['user_uid'] == user['uid'] %}

Edit Post

{% for t in topics %} {% endfor %}
{% endif %}

Comments

{% macro render_comment(item, depth=0) %}
{{ item.votes.up - item.votes.down }}
{{ item.comment['content'] }}
{% if user and item.comment['user_uid'] == user['uid'] %}
{% endif %}
{% if item.children %}
{% for child in item.children %} {{ render_comment(child, depth + 1) }} {% endfor %}
{% endif %}
{% endmacro %} {% for item in comments %} {{ render_comment(item, 0) }} {% else %}

No comments yet. Start the discussion.

{% endfor %} {% if user %}
{{ user['username'] }}
{% endif %}
{% if related_posts %}

Related Discussions

{% for item in related_posts %} {{ item.post.get('title') or item.post['content'][:60] }} {{ item.author['username'] }} ยท {{ item.time_ago }} {% endfor %}
{% endif %}
{% endblock %}