{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% load helpers %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock breadcrumbs %} {% block content %}

{% trans "ACI L3Out" %}

{% trans "ACI Fabric" %} {{ object.aci_fabric|linkify }}
{% trans "ACI Tenant" %} {{ object.aci_tenant|linkify }}
{% trans "ACI VRF" %} {{ object.aci_vrf|linkify }}
{% trans "ACI Routed Domain" %} {{ object.aci_routed_domain|linkify }}
{% trans "Name Alias" %} {{ object.name_alias|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "NetBox Tenant" %} {% if object.nb_tenant.group %} {{ object.nb_tenant.group|linkify }} / {% endif %} {{ object.nb_tenant|linkify|placeholder }}

{% trans "Policy" %}

{% trans "Target DSCP" %} {% badge object.get_target_dscp_display bg_color=object.get_target_dscp_color %}
{% trans "Import Route Control Enforcement" %} {% checkmark object.import_route_control_enforcement_enabled %}
{% trans "Export Route Control Enforcement" %} {% checkmark object.export_route_control_enforcement_enabled %}

{% trans "Protocols" %}

{% trans "BGP" %} {% checkmark object.bgp_enabled %}
{% trans "OSPF" %} {% checkmark object.ospf_enabled %}
{% trans "EIGRP" %} {% checkmark object.eigrp_enabled %}
{% trans "L3 Multicast IPv4" %} {% checkmark object.l3_multicast_ipv4_enabled %}
{% trans "L3 Multicast IPv6" %} {% checkmark object.l3_multicast_ipv6_enabled %}

{% trans "Policy References" %}

{% trans "Custom QoS Policy" %} {{ object.custom_qos_policy_name|placeholder }}
{% trans "BFD Policy" %} {{ object.bfd_policy_name|placeholder }}
{% trans "PIM Policy" %} {{ object.pim_policy_name|placeholder }}
{% trans "IGMP Interface Policy" %} {{ object.igmp_interface_policy_name|placeholder }}
{% trans "OSPF External Policy" %} {{ object.ospf_external_policy_name|placeholder }}
{% trans "EIGRP Interface Policy" %} {{ object.eigrp_interface_policy_name|placeholder }}
{% trans "Interleak Route Map" %} {{ object.interleak_route_map_name|placeholder }}
{% trans "Ingress Data Plane Policing" %} {{ object.ingress_data_plane_policing_policy_name|placeholder }}
{% trans "Egress Data Plane Policing" %} {{ object.egress_data_plane_policing_policy_name|placeholder }}
{% include 'inc/panels/custom_fields.html' %}

{% trans "External EPGs" %} {% if perms.netbox_aci_plugin.add_aciexternalendpointgroup %} {% endif %}

{% render_table external_endpoint_groups_table %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock content %}