{% extends "admin/settings.html" %} {% load djblets_utils i18n %} {% block content %}

{% blocktrans %} The SSH key configured here will be used for communication with any SSH-backend repositories. {% endblocktrans %}

{% if key %}
{{key.get_name}}
{{key.get_bits}}
{{fingerprint}}
{% else %}

{% trans "Generate an SSH Key" %}

{% blocktrans %} You can generate a brand new RSA key specific to this installation of Review Board. {% endblocktrans %}

{% blocktrans %} Note that generating a key may take some time. Don't click more than once. {% endblocktrans %}

{{form.generate_key}}

{% trans "Upload an SSH Key" %}

{% blocktrans %} If you already have an SSH key (id_dsa or id_rsa file) you want to use, you can upload it. Note that this key will be readable by the web server, so provide one you feel safe using. {% endblocktrans %}

{{form.keyfile.errors}} {{form.keyfile}}
{% endif %} {% endblock %}