{% extends 'generic/object.html' %}
{% load render_table from django_tables2 %}
{% load i18n %}
{% block breadcrumbs %}
{{ block.super }}
| {% trans "ACI Fabric" %} |
{{ object.aci_fabric|linkify }} |
| {% trans "ACI Tenant" %} |
{{ object.aci_tenant|linkify }} |
| {% trans "ACI Application Profile" %} |
{{ object.aci_app_profile|linkify }} |
| {% trans "ACI Endpoint Security Group" %} |
{{ object.aci_endpoint_security_group|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 "ACI Tenant" %} |
{{ object.aci_epg_object.aci_tenant|linkify|placeholder }} |
| {% trans "ACI Application Profile" %} |
{{ object.aci_epg_object.aci_app_profile|linkify|placeholder }} |
| {{ object.aci_epg_object_type.name|placeholder }} |
{{ object.aci_epg_object|linkify|placeholder }} |
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock content %}