{% extends 'base.html' %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{{ _('Which community within %(topic)s to post in?', topic=topic.name) }}
{% for community in communities %} {% if not community.user_is_banned(current_user) %} {% endif %} {% endfor %}
{{ community.display_name() }}
{% endblock %}