{% 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 %}
{% if search == '' %}

{{ title }}

{% else %}

{{ title }}

{% endif %}
{{ _('Online') }} | {{ _('Dormant') }} | {{ _('Gone forever') }} | {{ _('Trusted') }} {% if instances -%}
{% for instance in instances %} {% endfor %}
{{ _('Instance') }} {{ _('Software') }} {{ _('Version') }} {{ _('Heard from') }} {{ _('Sent to') }} {{ _('Online') }}
{{ instance.domain }} {{ instance.software }} {{ instance.version if instance.version }} {{ 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 }} {% if instance.dormant and instance.gone_forever -%} {{ _('Gone') }} {% elif instance.dormant -%} {{ _('Dormant') }} {% else -%} {{ _('Online') }} {% endif -%}
{% else -%}

{{ _('No results to show.') }}

{% endif %}
{% endblock %}