{% extends 'layout.html' %} {% set title = 'c/' + community %} {% block content %}
{{ community_data.name }}

{{ community_data.description }}

{% if user %}
{% if community_data.allow_new_posts %} Submit {% endif %} {% if is_member %}
{% else %}
{% endif %}
{% endif %}
Members: {{ community_data.members_count }}
Moderators: {% for mod in moderators %} {{ mod.username }} {% endfor %}
Since: {{ community_data.created|ago }}
{% if is_moderator %} Administration {% endif %}
{% include 'posts.html' %}
{% endblock %}