From ea9346d25da9a81eba74b1970581868f66bf3a0f Mon Sep 17 00:00:00 2001 From: Johannes Erwerle Date: Wed, 13 May 2026 00:01:04 +0200 Subject: [PATCH] Added SSH public keys to the borg repository listing --- README.md | 22 +++++++++++++++++++ .../community_backup/context_processors.py | 7 ++++++ .../community_backup/example_configuration.py | 15 +++++++++++++ community_backup/community_backup/settings.py | 2 ++ .../webui/templates/borg_list.html | 15 +++++++++++++ 5 files changed, 61 insertions(+) diff --git a/README.md b/README.md index 6d5a710..d3ab045 100644 --- a/README.md +++ b/README.md @@ -146,3 +146,25 @@ Django debug setting. ```python ADDITIONAL_FOOTER_NAV_ITEMS = [""" +{% if BORG_SERVER_PUBKEYS %} +
+
+

Borg Server Public Keys

+
+
    + {% for key, fingerprint in BORG_SERVER_PUBKEYS %} +
  • + {{ key }}
    + {{ fingerprint }} +
  • + {% endfor %} +
+
+{% endif %}