{% extends "base.html" %} {% block title %}Manage SSH Keys{% endblock %} {% block content %}
You have the following SSH Keys stored in the sloecode system. You may remove existing keys, or add new ones below:
{% for key in person.auth_keys %}Key Type: {{key.key_type}}
Key Data:
Key Comment: {{key.key_comment}}
{{ h.hidden('id', key.id) }} {{ h.submit('delete', 'Remove Key') }} {{ h.end_form() }}You do not have any SSH keys stored in the sloecode system. You may add a SSH key below:
{% endif %}