moviewyrm/bookwyrm/templates/settings/federation.html

26 lines
773 B
HTML
Raw Normal View History

{% extends 'settings/admin_layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2021-03-28 19:34:55 +00:00
{% block title %}{% trans "Federated Servers" %}{% endblock %}
2021-02-28 02:48:10 +00:00
{% block header %}{% trans "Federated Servers" %}{% endblock %}
{% block panel %}
<table class="table is-striped">
<tr>
2021-02-28 02:48:10 +00:00
<th>{% trans "Server name" %}</th>
<th>{% trans "Software" %}</th>
<th>{% trans "Status" %}</th>
</tr>
{% for server in servers %}
<tr>
2021-03-28 19:34:55 +00:00
<td><a href="{% url 'settings-federated-server' server.id %}">{{ server.server_name }}</a></td>
<td>{{ server.application_type }} ({{ server.application_version }})</td>
<td>{{ server.status }}</td>
</tr>
{% endfor %}
</table>
2021-03-28 20:08:24 +00:00
{% include 'snippets/pagination.html' with page=servers path=request.path %}
{% endblock %}