{% extends "base.html" %} {% block title %}SSH Keys — Fossilrepo{% endblock %} {% block content %}

SSH Keys

Add SSH Key

{% csrf_token %}

Paste your public key (usually from ~/.ssh/id_ed25519.pub)

{% if keys %}

Your Keys

{% for key in keys %}
{{ key.title }}
{{ key.fingerprint }}
{{ key.key_type|upper }} · Added {{ key.created_at|timesince }} ago {% if key.last_used_at %}· Last used {{ key.last_used_at|timesince }} ago{% endif %}
{% csrf_token %}
{% endfor %}
{% else %}

No SSH keys added yet.

Add an SSH key to clone and push Fossil repos over SSH.

{% endif %} {% endblock %}