{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% if community.header_image() != '' %}

{{ community.title }}

{% elif community.icon_id %}

{{ community.title }}

{% else %}

{{ community.title }}

{% endif %} {% include "community/_community_nav.html" %}
{% for post in posts %} {% include 'post/_post_teaser.html' %} {% else %}

{{ _('No posts in this community yet.') }}

{% endfor %}
{% if current_user.is_authenticated and community_membership(current_user, community) == SUBSCRIPTION_MEMBER %} {{ _('Leave') }} {% elif current_user.is_authenticated and community_membership(current_user, community) == SUBSCRIPTION_PENDING %} {{ _('Pending') }} {% else %} {{ _('Join') }} {% endif %}

{{ _('About community') }}

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

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

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

Moderators

    {% for mod in mods %}
  • {{ render_username(mod) }}
  • {% endfor %}
{% endif %}

RSS feed

{% if is_moderator or is_admin %}

{{ _('Community Settings') }}

{{ _('Moderate') }}

{{ _('Settings') }}

{% if community.is_owner() or current_user.is_admin() %}

Delete community

{% endif %}
{% endif %}
{% endblock %}