{% extends 'layout.html' %} {% set breadcrumbs = breadcrumb_page('prefs') + breadcrumb_page(self) %} {% block content %}
{# Header #}

{% trans %}SSH Keys{% endtrans %}

{# Help text #}

{% trans %} SSH keys allow your backup client to securely connect to this server.{% endtrans %} {% if disable_ssh_keys %}
{% trans %}SSH Keys management is disabled by your administrator.{% endtrans %} {% endif %}

{# Key count summary #}

{{ _('%(count)s SSH keys associated with your account.', count=sshkeys|length) }}

{# Key list #}
{% for key in sshkeys %}
{{ key.comment }} {{ key.keytype }}
{{ key.fingerprint }}
{% trans %}Added on {% endtrans %} {% if key.creation_time %} {{ key.creation_time | format_datetime }} {% else %} — {% endif %}
{% else %}

{% endfor %}
{# Add SSH Key Modal #}
{% if form.error_message %}

{{ form.error_message }}

{% endif %}
{# Delete Modal #}

{% trans %}Any backup client using this key will lose access immediately.{% endtrans %}

{% endblock %}