{% 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_form %} {% block app_content %}

{{ _('Domains') }}

{% if search == '' %}

All domains this instance knows about

{% else %}

Domains containing "{{ _('%(search)s', search=search) }}"

{% endif %}
{% if not current_user.is_anonymous %}{% if user_access('ban users', current_user.id) or user_access('manage users', current_user.id) %}{%endif%}{%endif%} {% for domain in domains %} {% endfor %}
Domain # PostsActions
{{ domain.name }} {{ domain.post_count }} {% if not current_user.is_anonymous %} {% if user_access('ban users', current_user.id) or user_access('manage users', current_user.id) %} {{ _('Ban') }} {% endif %} {% endif %}
{% endblock %}