{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% load i18n %}
{% block breadcrumbs %}
{{ block.super }}
{{ object.aci_tenant }}
{{ object.aci_app_profile }}
{{ object.aci_bridge_domain }}
{% endblock breadcrumbs %}
{% block content %}
| {% trans "ACI Tenant" %} |
{{ object.aci_tenant|linkify|placeholder }} |
| {% trans "ACI Application Profile" %} |
{{ object.aci_app_profile|linkify|placeholder }} |
| {% trans "ACI VRF" %} |
{{ object.aci_vrf|linkify|placeholder }} |
| {% trans "ACI Bridge Domain" %} |
{{ object.aci_bridge_domain|linkify|placeholder }} |
| {% 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 "Preferred Group Member enabled" %} |
{% checkmark object.preferred_group_member_enabled %} |
| {% trans "Intra-EPG Isolation enabled" %} |
{% checkmark object.intra_epg_isolation_enabled %} |
| {% trans "Flood in Encapsulation enabled" %} |
{% checkmark object.flood_in_encap_enabled %} |
| {% trans "QoS Class" %} |
{% badge object.get_qos_class_display bg_color=object.get_qos_class_color %} |
| {% trans "Custom QoS Policy" %} |
{{ object.custom_qos_policy_name|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock content %}