{% extends "base.html" %} {% load i18n %} {% block page_title %}{% blocktrans %}GPG Key {{ key.fingerprint }} Information{% endblocktrans %}{% endblock %} {% block content %}
{% trans "UIDs" %}
{{ key.uids|join:", " }}
{% trans "Fingerprint" %}
{{ key.fingerprint }}
{% trans "Keyid" %}
{{ key.keyid }}
{% trans "Private Key ASCII Armor" %}
{{ private_armor }}
{% trans "Public Key ASCII Armor" %}
{{ public_armor }}
{% trans "Actions" %}
{% endblock %}