2024-09-03 12:09:06 +12:00
|
|
|
{% 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 %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12 col-md-8 position-relative main_pane">
|
|
|
|
{% if search == '' %}
|
|
|
|
<h1>{{ _('Instances') }}</h1>
|
|
|
|
{% else %}
|
|
|
|
<h1>{{ _('Instances containing "%(search)s"', search=search) }}</h1>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div class="table-responsive-sm pt-4">
|
|
|
|
<table class="table table-striped">
|
|
|
|
<tr>
|
|
|
|
<th>{{ _('Instance') }}</th>
|
|
|
|
<th>{{ _('Software') }}</th>
|
|
|
|
<th>{{ _('Version') }}</th>
|
|
|
|
<th>{{ _('Heard from') }}</th>
|
|
|
|
<th>{{ _('Sent to') }}</th>
|
|
|
|
</tr>
|
|
|
|
{% for instance in instances %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="https://{{ instance.domain }}" rel="noopener nofollow noindex noreferrer">{{ instance.domain }}</a></td>
|
|
|
|
<td>{{ instance.software }}</td>
|
2024-09-03 12:10:24 +12:00
|
|
|
<td>{{ instance.version if instance.version }}</td>
|
2024-09-03 12:09:06 +12:00
|
|
|
<td>{{ arrow.get(instance.last_seen).humanize(locale=locale) if instance.last_seen }}</td>
|
|
|
|
<td>{{ arrow.get(instance.last_successful_send).humanize(locale=locale) if instance.last_successful_send }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
<nav aria-label="Pagination" class="mt-4" role="navigation">
|
|
|
|
{% if prev_url %}
|
|
|
|
<a href="{{ prev_url }}" class="btn btn-primary" rel="nofollow">
|
|
|
|
<span aria-hidden="true">←</span> {{ _('Previous page') }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
{% if next_url %}
|
|
|
|
<a href="{{ next_url }}" class="btn btn-primary" rel="nofollow">
|
|
|
|
{{ _('Next page') }} <span aria-hidden="true">→</span>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|