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

{{ _('Instances') }}

{% else %}

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

{% endif %}
{% for instance in instances %} {% endfor %}
{{ _('Instance') }} {{ _('Software') }} {{ _('Version') }} {{ _('Heard from') }} {{ _('Sent to') }}
{{ 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 }}
{% endblock %}