{% extends 'peering/bgpgroup/_base.html' %} {% load helpers %} {% block subcontent %}
BGP Group Details
Name {{ instance.name }}
Status {{ instance | status_as_badge }}
Comments
{% if instance.comments %} {{ instance.comments|markdown }} {% else %} None {% endif %}
{% include 'includes/tags_card.html' with tags=instance.tags.all url='peering:bgpgroup_list' %}
BGP Communities
{% if instance.communities.all.count > 0 %}
    {% for community in instance.communities.all %}
  • {{ community|as_link }}{% if community.type %} {{ community.get_type_html }}{% endif %}
  • {% endfor %}
{% else %}
None
{% endif %}
Routing Policies
{% if instance.export_routing_policies.all.count > 0 or instance.import_routing_policies.all.count > 0 %}
    {% for routing_policy in instance.export_routing_policies.all %}
  • {{ routing_policy|as_link }} {{ routing_policy.get_type_html }}
  • {% endfor %} {% for routing_policy in instance.import_routing_policies.all %}
  • {{ routing_policy|as_link }} {{ routing_policy.get_type_html }}
  • {% endfor %}
{% else %}
None
{% endif %}
{% endblock %}