{% 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 forever') }}{{ _('Dormant') }}{{ _('Online') }}{{ _('Edit') }}

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

{% endblock %}