{% 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 %} {% include 'admin/_tabbed_nav.html' %}

{{ title }}

{% for community in communities.items %} {% endfor %}
{{ _('Layout') }} {{ _('Actions') }}
{{ render_communityname(community, add_domain=False) }}{% if community.banned %} (banned){% endif %}
!{{ community.name }}@{{ community.ap_domain }}
{{ community.topic.name }} {{ community.post_count }} {{ community.subscriptions_count }} {{ community.content_retention if community.content_retention != -1 }} {{ community.default_layout if community.default_layout }} {{ '✓'|safe if community.show_popular else '✗'|safe }} {{ '✓'|safe if community.show_all else '✗'|safe }} {{ '⚠'|safe if community.nsfw or community.nsfl or community.content_warning else ''|safe }} {{ arrow.get(community.last_active).humanize(locale=locale) }} {{ _('Edit') }}, {{ _('Moderate') }}, {{ _('Delete') }}

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

{% endblock %}