{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% include 'post/_post_full.html' %}

Back to main discussion

{% macro render_comment(comment) %}
{% with comment=comment['comment'] %} {% include "post/_voting_buttons.html" %} {% endwith %}
{% if comment['comment'].author.deleted %} [deleted] {% else %} {% if comment['comment'].author.avatar_id %} Avatar {% endif %} {{ comment['comment'].author.user_name}} {% endif %} {% if comment['comment'].author.id == post.author.id%}[S]{% endif %} {{ moment(comment['comment'].posted_at).fromNow(refresh=True) }}
{{ comment['comment'].body_html | safe }}
{% if post.comments_enabled %} reply {% endif %}
{% if comment['replies'] %}
{% for reply in comment['replies'] %} {{ render_comment(reply) | safe }} {% endfor %}
{% endif %}
{% endmacro %}
{% for reply in replies %} {{ render_comment(reply) | safe }} {% endfor %}
{% if current_user.is_authenticated and community_membership(current_user, post.community) %} {{ _('Unsubscribe') }} {% else %} {{ _('Subscribe') }} {% endif %}

{{ _('About community') }}

{{ post.community.description|safe }}

{{ post.community.rules|safe }}

{% if len(mods) > 0 and not post.community.private_mods %}

Moderators

    {% for mod in mods %}
  1. {{ mod.user_name }}
  2. {% endfor %}
{% endif %}
{% if is_moderator %}

{{ _('Community Settings') }}

{% endif %}
{% endblock %}