{% load i18n %}
{% trans "BGPVPN Name" %}
{{ bgpvpn.name }}
{% trans "BGPVPN ID" %}
{{ bgpvpn.id }}
{% trans "Type" %}
{{ bgpvpn.type }}
{% trans "Route Targets" %}
{% for rt in bgpvpn.route_targets %} {{ rt }} {% endfor %}
{% trans "Import Targets" %}
{% for it in bgpvpn.import_targets %} {{ it }} {% endfor %}
{% trans "Export Targets" %}
{% for et in bgpvpn.export_targets %} {{ et }} {% endfor %}
{% trans "Project ID" %}
{{ bgpvpn.tenant_id }}
{% include "project/bgpvpn/_associated_networks.html" %} {% include "project/bgpvpn/_associated_routers.html" %}