{% extends 'generic/object.html' %} {% load helpers %} {% load i18n %} {% block content %}

{% trans "Endpoint Group" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Tenant" %} {{ object.aci_tenant }}
{% trans "App Profile" %} {{ object.aci_app_profile }}
{% trans "Bridge Domain" %} {{ object.aci_bridge_domain }}
{% trans "uSeg EPG" %}{{ object.is_useg|yesno }}
{% trans "Admin shutdown" %}{{ object.admin_shutdown|yesno }}
{% trans "Intra-EPG isolation" %}{{ object.intra_epg_isolation|yesno }}
{% trans "Preferred-group member" %}{{ object.preferred_group_member|yesno }}
{% trans "QoS class" %}{{ object.get_qos_class_display }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
{% if object.is_useg %}

{% trans "uSeg Attributes" %}{% trans "Add" %}

{% for a in object.useg_attributes.all %} {% empty %} {% endfor %}
{{ a.get_attribute_type_display }} {{ a.get_match_operator_display }} {{ a.match_value }}
{% trans "No attributes defined." %}
{% endif %} {% include 'inc/panels/comments.html' %}
{% endblock %}