diff --git a/plinth/modules/monkeysphere/templates/monkeysphere_details.html b/plinth/modules/monkeysphere/templates/monkeysphere_details.html index 6d0c2e197..bbe43947a 100644 --- a/plinth/modules/monkeysphere/templates/monkeysphere_details.html +++ b/plinth/modules/monkeysphere/templates/monkeysphere_details.html @@ -28,32 +28,32 @@
| {% trans "OpenPGP Fingerprint" %} | -{{ key.pgp_fingerprint }} | +{% trans "OpenPGP Fingerprint" %} | +{{ key.pgp_fingerprint }} |
| {% trans "OpenPGP Key ID" %} | -{{ key.pub }} | +{% trans "OpenPGP Key ID" %} | +{{ key.pub }} |
| {% trans "OpenPGP User ID" %} | -{{ key.uid }} | +{% trans "OpenPGP User ID" %} | +{{ key.uid }} |
| {% trans "Key Generation Date" %} | -{{ key.date }} | +{% trans "Key Generation Date" %} | +{{ key.date }} |
| {% trans "SSH Key Type" %} | -{{ key.ssh_key_type }} | +{% trans "SSH Key Type" %} | +{{ key.ssh_key_type }} |
| {% trans "SSH Key Size" %} | -{{ key.ssh_key_size }} | +{% trans "SSH Key Size" %} | +{{ key.ssh_key_size }} |
| {% trans "SSH Fingerprint" %} | -{{ key.ssh_fingerprint }} | +{% trans "SSH Fingerprint" %} | +{{ key.ssh_fingerprint }} |
- {% trans "# download the key" %}
- gpg --recv-key {{ key.pgp_fingerprint }}
- {% trans "# sign the key" %}
- gpg --sign-key {{ key.pgp_fingerprint }}
- {% trans "# send the key back to the keyservers" %}
- gpg --send-key {{ key.pgp_fingerprint }}
-
+# {% trans "Download the key" %}
+gpg --recv-key {{ key.pgp_fingerprint }}
+
+# {% trans "Sign the key" %}
+gpg --sign-key {{ key.pgp_fingerprint }}
+
+# {% trans "Send the key back to the keyservers" %}
+gpg --send-key {{ key.pgp_fingerprint }}
+
{% endblock %}