{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% set active_child = 'admin_communities' %} {% block app_content %}

{{ _('Communities') }}

{% for community in communities.items %} {% endfor %}
Name Title Topic # Posts Home Popular All Actions
{{ community.name }} {{ community.display_name() }}{% if community.banned %} (banned){% endif %} {{ community.topic.name }} {{ community.post_count }} {{ '✓'|safe if community.show_home else '✗'|safe }} {{ '✓'|safe if community.show_popular else '✗'|safe }} {{ '✓'|safe if community.show_all else '✗'|safe }} View | Edit | Delete

{% include 'admin/_nav.html' %}

{% endblock %}