{% extends "base.html" %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{% include 'admin/_nav.html' %}
{% for community in communities %} {% endfor %}
Name Title # Posts Home Popular All Actions
{{ community.name }} {{ community.display_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
{% endblock %}