{% 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}}
{% if post.community.ap_id and '@beehaw.org' in post.community.ap_id %}

{{ _('This post is hosted on beehaw.org which has higher standards of behaviour than most places. Be nice.') }}

{% endif %} {{ render_form(form) }} {% if markdown_editor %} {% endif %}
{% if current_user.is_authenticated and community_membership(current_user, post.community) %} {{ _('Leave') }} {% else %} {{ _('Join') }} {% endif %}

{{ _('About community') }}

{{ post.community.description_html|safe if post.community.description_html else '' }}

{{ post.community.rules_html|safe if post.community.rules_html else '' }}

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

Moderators

{% endif %}
{% if is_moderator %}

{{ _('Community Settings') }}

{% endif %}
{% endblock %}