{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}{% trans "SSH keys" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if public_key %}

{% trans "Public SSH key" %}

{% trans "Weblate currently uses following SSH key:" %}

{% elif can_generate %}

{% trans "Generate SSH key" %}

{% trans "You don't seem to have existing SSH key, by pressing button below Weblate will generate it for you." %}

{% csrf_token %}
{% endif %} {% if host_keys %}

{% trans "Known host keys" %}

{% for key in host_keys %} {% endfor %}
{% trans "Hostname" %} {% trans "Key type" %} {% trans "Fingerprint" %}
{{ key.0 }}{{ key.1 }}{{ key.2 }}
{% endif %}

{% trans "Add host key" %}

{% trans "To access SSH hosts, it's host key needs to be verified. You can check host key using form below." %}

{% csrf_token %} {% trans "Host:" %} {% trans "Port:" %}

{% trans "More information" %}

{% blocktrans %}You can find more information about setting up SSH keys in the Weblate manual.{% endblocktrans %}

{% endblock %}