{% load i18n %}

{% trans "Upload your SSH public keys and have them automatically installed on all newly-created instances. Keys must be in OpenSSH format, either RSA, or DSA, with or without a trailing comment." %}

{% if keys %} {% for key in keys %} {% endfor %}
{% trans "Fingerprint" %}{% trans "Comment" %}
{{ key.fingerprint }}{{ key.comment|default:"—" }}{% trans "Delete" %}
{% endif %}

{% trans "Add new key" %}

{% if msg %}
{{msg}}
{% endif %}
{% csrf_token %} {% if form.ssh_pubkey.errors %}
{{ form.ssh_pubkey.errors }}
{% endif %} {{ form.ssh_pubkey }}