{% 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 %}
{{ _('See who is subscribed to %(community)s', community=community.display_name()) }}
{% if subscribers %}Name | Local/Remote | About | Last Seen | IP | Actions |
---|---|---|---|---|---|
{{ render_username(user) }} | {% if user.is_local() %} Local {% else %} {{ user.ap_domain }}{% endif %} | {{ user.about_html | safe if user.about_html }} | {{ moment(user.last_seen).fromNow() }} | {{ user.ip_address if user.ip_address }} |
|
{{ _('This community has no subscribers') }}
{% endif %}{{ _('See and manage who is banned from %(community)s', community=community.display_name()) }}
{% if banned_people %}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 }} |
|
{{ _('No banned people yet') }}
{% endif %}