From 7a7d9572484647b874381864ad7966617a8ea2e2 Mon Sep 17 00:00:00 2001
From: Sunil Mohan Adapa
@@ -65,12 +65,14 @@
{% endblocktrans %}
-
{% 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 %}