From f3c8028b84993728d772c3e6a1ffe6f8122c8093 Mon Sep 17 00:00:00 2001
From: Samuel Roberts <sam.roberts@geant.org>
Date: Wed, 24 Apr 2024 13:27:08 +0100
Subject: [PATCH] add missing format string placeholder to title string

---
 brian_dashboard_manager/templating/helpers.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/brian_dashboard_manager/templating/helpers.py b/brian_dashboard_manager/templating/helpers.py
index 52722a5..2f57dd6 100644
--- a/brian_dashboard_manager/templating/helpers.py
+++ b/brian_dashboard_manager/templating/helpers.py
@@ -212,7 +212,7 @@ def get_nren_interface_data(services, interfaces, excluded_dashboards):
                 if_name = _interfaces[0].get('port')
                 router = _interfaces[0].get('equipment')
             router = router.replace('.geant.net', '')
-            title = f'{router} - {if_name} - {name} ({sid})'
+            title = f'{router} - {{}} - {if_name} - {name} ({sid})'
 
             if lag_service:
                 if len(_interfaces) > 1:
-- 
GitLab