{% extends "base.html" %} {% from 'macros.html' import render_pagination %} {% block body %}
{% if private_key %}

{{ _('Your public key') }}

{{private_key.get_name()}} {{private_key.get_base64()}}

{{_('MD5 Fingerprint')}}
{{fingerprint_md5}}

{{_('SHA256 Fingerprint')}}
{{fingerprint_sha256}}

{{_("Request new key")}}

{% else %}
Not yet generated... is celeryworker runnung ?
{% endif %}

{{_('Pull mirrors: %(pull_mirrors_count)s', pull_mirrors_count=pull_mirrors_count)}}

Pull mirrors allows you to pull code from other repositories to your gitlab installation.

View details »

{{_('Push mirrors: %(push_mirrors_count)s', push_mirrors_count=push_mirrors_count)}}

Push mirrors allows you to push your code from gitlab to other VCS services.

View details »

{{_('Fingerprints: %(fingerprint_count)s', fingerprint_count=fingerprint_count)}}

Fingerprints keeps your code/traffic safe.

View details »

{% endblock %}