{% 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) %} {% if not community.restricted_to_mods or (community.restricted_to_mods and community_membership(current_user, community) in [SUBSCRIPTION_MODERATOR, SUBSCRIPTION_OWNER]) %} {% else %} {% endif %} {% endif %} {% endfor %}
{{ community.display_name() }}
{{ community.display_name() }}(Posts are restricted to Mods)
{% endblock %}