{% 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 %}
{{ _('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 }} | {% if instance.gone_forever %}{{ _('Gone forever') }} | {% elif instance.dormant %}{{ _('Dormant') }} | {% else %}{{ _('Online') }} | {% endif %}{{ _('Edit') }} |