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

{% trans "SSH keys management" %}

{% 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, its host key needs to be verified. You can get the host key by entering a domain name or IP for the host in the form below." %}

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