{% extends "base.html" %} {% comment %} # # This file is part of Plinth. # # 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 . # {% endcomment %} {% load bootstrap %} {% load i18n %} {% block content %}

{% trans "Monkeysphere" %}

{% trans "OpenPGP Fingerprint" %} {{ key.openpgp_fingerprint }}
{% trans "OpenPGP User IDs" %} {{ key.uids|join:', ' }}
{% trans "Key Import Date" %} {{ key.date }}
{% trans "SSH Key Type" %} {{ key.ssh_key_type }}
{% trans "SSH Key Size" %} {{ key.ssh_key_size }}
{% trans "SSH Fingerprint" %} {{ key.ssh_fingerprint }}
{% trans "Service" %} {% if key.service == 'ssh' %} {% trans "Secure Shell" %} {% elif key.service == 'https' %} {% trans "Web Server" %} {% else %} {% trans "Other" %} {% endif %}
{% trans "Key File" %} {{ key.key_file }}
{% trans "Available Domains" %} {{ key.available_domains|join:', ' }}
{% trans "Added Domains" %} {{ key.imported_domains|join:', ' }}

{% blocktrans trimmed %} After this key is published to the keyservers, it can be signed using GnuPG with the following commands: {% endblocktrans %}

# {% trans "Download the key" %}
gpg --recv-key {{ key.openpgp_fingerprint }}

# {% trans "Sign the key" %}
gpg --sign-key {{ key.openpgp_fingerprint }}

# {% trans "Send the key back to the keyservers" %}
gpg --send-key {{ key.openpgp_fingerprint }}
{% endblock %}