{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% block content %}
BGP PEs |
{% for pe in object.bgp_mesh.all %}
{{ pe }}
|
{% endfor %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
Address Family |
{{object.address_family}}
|
VPNV4 Community |
{{ object.address_family.vpnv4_community }}
|
Active |
{{ object.address_family.vpnv4_address_family }}
|
VPNV6 Community |
{{ object.address_family.vpnv6_community }}
|
Active |
{{ object.address_family.vpnv6_address_family }}
|
{% include 'inc/panels/custom_fields.html' %}
{% endblock content %}