{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "My account configuration" %}{% trans ": " %}{{title}} {% endblock %} {% block content %}

{% trans "Working SSH Keys" %}

{% if ssh_keys.items %}

$ ssh-keygen -l -f key.pub

{% endif %} {% for key_pk,key in ssh_keys.items %} {% empty %} {% trans "No SSH keys yet." %} {% endfor %}

{% trans "SSH keys" %}

{% csrf_token %} {{ form.as_p }}
{% endblock %} {% comment %} Local Variables: ** mode: django-html ** tab-width: 4 ** indent-tabs-mode: nil ** End: ** {% endcomment %}