From fe9837fc4ae2335a1424e097fd8b555677512fc7 Mon Sep 17 00:00:00 2001 From: Blackwhitebear8 Date: Tue, 5 Aug 2025 19:18:14 +0200 Subject: [PATCH] Add templates/bgp_neighbor_detail.html --- templates/bgp_neighbor_detail.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 templates/bgp_neighbor_detail.html diff --git a/templates/bgp_neighbor_detail.html b/templates/bgp_neighbor_detail.html new file mode 100644 index 0000000..de059c8 --- /dev/null +++ b/templates/bgp_neighbor_detail.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} + +{% block title %}AS215085 - Router tools | BGP neighbor information{% endblock %} + +{% block content %} +
+

BGP neighbor details: {{ neighbor_ip }}

+ {% if error %} + + {% else %} +
{{ neighbor_data }}
+ {% endif %} + +
+{% endblock %} \ No newline at end of file