{% 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_field %} {% block app_content %}
{% include "community/_community_moderation_nav.html" %}

{{ _('Moderators for %(community)s', community=community.display_name()) }}

{{ _('See and change who moderates this community') }}

{% if community.is_owner() -%} {% endif -%}
{% for moderator in moderators %} {% endfor %}
{{ _('Name') }} {{ _('Action') }}
{{ moderator.display_name() }} {% if not community.is_owner(moderator) and (current_user.is_admin() or moderator.id == current_user.id) %} {{ _('Remove') }}{% endif %}
{% endblock %}