{% 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" %}

{{ _('Subscribers') }}

{{ _('See who is subscribed to %(community)s', community=community.display_name()) }}

{% if subscribers %}
{% for user in subscribers %} {% endfor %}
Name Local/Remote Last Seen IP Actions
{{ render_username(user) }} {% if user.is_local() %} Local {% else %} {{ user.ap_domain }}{% endif %} {{ moment(user.last_seen).fromNow() }} {{ user.ip_address if user.ip_address }}
{% else %}

{{ _('This community has no subscribers') }}

{% endif %}

{{ _('Banned People') }}

{{ _('See and manage who is banned from %(community)s', community=community.display_name()) }}

{% if banned_people %}
{% for user in banned_people %} {% endfor %}
Name Local/Remote Reports IP Actions
{{ render_username(user) }} {% if user.is_local() %} Local {% else %} {{ user.ap_domain }}{% endif %} {{ user.reports if user.reports > 0 }} {{ user.ip_address if user.ip_address }}
{% else %}

{{ _('No banned people yet') }}

{% endif %}
{% endblock %}