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

{% trans "Endpoint Security Group" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Tenant" %} {{ object.aci_tenant }}
{% trans "VRF" %} {{ object.aci_vrf }}
{% trans "App Profile" %} {% if object.aci_app_profile %}{{ object.aci_app_profile }}{% else %}{{ ''|placeholder }}{% endif %}
{% trans "Admin shutdown" %}{{ object.admin_shutdown|yesno }}
{% trans "Preferred-group member" %}{{ object.preferred_group_member|yesno }}
{% trans "Intra-ESG isolation" %}{{ object.intra_esg_isolation|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' %}
{% include 'inc/panels/comments.html' %}
{% endblock %}