{% extends "account/base.html" %} {% load i18n %} {% block menu %} {% with menu="ssh" %} {{ block.super }} {% endwith %} {% endblock %} {% block accounts-content %} {% trans "Add" %}

{% trans "SSH keys" %}

{% for key in object_list %}
{{ key.comment }} ({{ key.algorithm}} {{ key.bit_length }})
{% trans "Added" %}: {{ key.created_at }}
{% trans "Last seen" %}: {{ key.last_seen_at|default:"–" }}

{{ key.md5_hash }} {{ key.key }}
{% trans "Delete" %}
{% empty %}
{% translate "You don't have any SSH keys." %}
{% endfor %} {% endblock %}