mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- Add a function to the ssh module that returns information about the SSH host keys as dict. - Move SSHAppView to a new ssh/views.py. - Add the ssh host key information to the SSHAppView context. - Create a template for the SSH module. - Display the sshkeys context information in the template below the status area. Closes: #1650 Signed-off-by: Birger Schacht <birger@rantanplan.org> [sunil@medhas.org Minor styling updates for variable names, isort, yapf] [sunil@medhas.org Styling updates on the HTML output for consistency] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
52 lines
1.5 KiB
HTML
52 lines
1.5 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
#
|
|
# This file is part of FreedomBox.
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
{% endcomment %}
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block status %}
|
|
{{ block.super }}
|
|
|
|
<h3>{% trans "Server Fingerprints" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
When connecting to the server, ensure that the fingerprint shown by the
|
|
SSH client matches one of these fingerprints.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<table class="table table-bordered table-condensed table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{% trans "Algorithm" %}</th>
|
|
<th>{% trans "Fingerprint" %}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for host_key in host_keys %}
|
|
<tr>
|
|
<td>{{ host_key.algorithm }}</td>
|
|
<td><samp>{{ host_key.fingerprint }}</samp></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|