{% 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 %} {% set active_child = 'admin_instances' %} {% block app_content %}

{{ title }}

Status Filter: Online | Dormant | Gone Forever | Trusted {% for instance in instances.items %} {% if instance.gone_forever %} {% elif instance.dormant %} {% else %} {% endif %} {% endfor %}
Domain Software Version Communities Users Posts Post Replies Vote Weight Trusted Seen Sent Failed Status
{{ instance.domain }} {{ instance.software }} {{ instance.version if instance.version }} {{ instance.known_communities_count() }} {{ instance.known_users_count() }} {{ instance.post_count() }} {{ instance.post_replies_count() }} {{ instance.vote_weight }} {{ 'Yes' if instance.trusted }} {{ arrow.get(instance.last_seen).humanize(locale=locale) if instance.last_seen }} {{ arrow.get(instance.last_successful_send).humanize(locale=locale) if instance.last_successful_send }} {{ instance.failures }}Gone ForeverDormantOnline

{% include 'admin/_nav.html' %}

{% endblock %}