{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% block status %} {{ block.super }}

{% trans "Server Fingerprints" %}

{% blocktrans trimmed %} When connecting to the server, ensure that the fingerprint shown by the SSH client matches one of these fingerprints. {% endblocktrans %}

{% for host_key in host_keys %} {% endfor %}
{% trans "Algorithm" %} {% trans "Fingerprint" %}
{{ host_key.algorithm }} {{ host_key.fingerprint }}
{% endblock %}