{% 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_useg_endpoint_group }}
{% endblock breadcrumbs %}
{% block content %}
| {% trans "ACI Tenant" %} |
{{ object.aci_tenant|linkify|placeholder }} |
| {% trans "ACI Application Profile" %} |
{{ object.aci_app_profile|linkify|placeholder }} |
| {% trans "ACI uSeg Endpoint Group" %} |
{{ object.aci_useg_endpoint_group|linkify|placeholder }} |
| {% trans "Name Alias" %} |
{{ object.name_alias|placeholder }} |
| {% trans "Description" %} |
{{ object.description|placeholder }} |
| {% trans "Type" %} |
{% badge object.get_type_display bg_color=object.get_type_color %} |
| {% trans "NetBox Tenant" %} |
{% if object.nb_tenant.group %}
{{ object.nb_tenant.group|linkify }} /
{% endif %}
{{ object.nb_tenant|linkify|placeholder }}
|
| {% trans "Use EPG Subnet" %} |
{% checkmark object.use_epg_subnet %} |
| {% trans "Attribute Object Type" %} |
{{ object.attr_object_type.name|placeholder }} |
| {% trans "Attribute Object" %} |
{{ object.attr_object|linkify|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock content %}