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 %} + + Error occurred + Unable to retrieve details for this neighbor. + + {{ error }} + + {% else %} + {{ neighbor_data }} + {% endif %} + + Back to BGP overview + + +{% endblock %} \ No newline at end of file
Unable to retrieve details for this neighbor.
{{ error }}
{{ neighbor_data }}