{% extends 'settings/layout.html' %} {% load i18n %} {% block title %}{% trans "Federated Instances" %}{% endblock %} {% block header %}{% trans "Federated Instances" %}{% endblock %} {% block edit-button %} {% trans "Add instance" %} {% endblock %} {% block panel %} {% include 'settings/federation/instance_filters.html' %}
{% trans "Instance name" as text %} {% include 'snippets/table-sort-header.html' with field="server_name" sort=sort text=text %} | {% trans "Date added" as text %} {% include 'snippets/table-sort-header.html' with field="created_date" sort=sort text=text %} | {% trans "Last updated" as text %} {% include 'snippets/table-sort-header.html' with field="updated_date" sort=sort text=text %} | {% trans "Software" as text %} {% include 'snippets/table-sort-header.html' with field="application_type" sort=sort text=text %} | {% trans "Users" %} |
---|---|---|---|---|
{{ server.server_name }} | {{ server.created_date|date:'Y-m-d' }} | {{ server.updated_date|date:'Y-m-d' }} | {% if server.application_type %} {{ server.application_type }} {% if server.application_version %}({{ server.application_version }}){% endif %} {% endif %} | {{ server.user_set.count }} |
{% trans "No instances found" %} |