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

{{ post.title }}

{{ post.body_html | safe }}
Comment you are replying to {{ comment.body_html | safe}}
{{ render_form(form) }}
{% 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 %}