Added SSH public keys to the borg repository listing

This commit is contained in:
Johannes Erwerle 2026-05-13 00:01:04 +02:00
parent d0b7158423
commit ea9346d25d
5 changed files with 61 additions and 0 deletions

View file

@ -35,6 +35,21 @@
</tbody>
</table>
{% if BORG_SERVER_PUBKEYS %}
<div class="card">
<div class="card-header">
<h4>Borg Server Public Keys</h4>
</div>
<ul class="list-group list-group-flush">
{% for key, fingerprint in BORG_SERVER_PUBKEYS %}
<li class="list-group-item">
<span style="word-break: break-all"><code>{{ key }}</code></span><br>
<span style="word-break: break-all"><code>{{ fingerprint }}</code></span>
</li>
{% endfor %}
</ul>
</div>
{% endif %}