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

{{ community.title }}

{% elif community.icon_image() != '' %}

{{ community.title }}

{% else %}

{{ community.title }}

{% endif %}
{% 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 %} {{ _('Unsubscribe') }} {% elif current_user.is_authenticated and community_membership(current_user, community) == SUBSCRIPTION_PENDING %} {{ _('Pending') }} {% else %} {{ _('Subscribe') }} {% endif %}

{{ _('About community') }}

{{ community.description|safe }}

{{ community.rules|safe }}

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

Moderators

    {% for mod in mods %}
  1. {{ render_username(mod) }}
  2. {% endfor %}
{% endif %}

RSS feed

{% if is_moderator or current_user.is_admin() %}

{{ _('Community Settings') }}

{{ _('Moderate') }}

{{ _('Settings') }}

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

Delete community

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