{% extends 'generic/object.html' %} {% load render_table from django_tables2 %} {% load i18n %} {% block content %}

{% trans "ACI Fabric" %}

{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Fabric ID" %} {{ object.fabric_id }}
{% trans "Infrastructure VLAN ID" %} {{ object.infra_vlan_vid }}
{% trans "Infrastructure VLAN" %} {{ object.infra_vlan|linkify|placeholder }}
{% trans "GIPo Pool" %} {{ object.gipo_pool|linkify|placeholder }}
{% trans "NetBox Tenant" %} {% if object.nb_tenant.group %} {{ object.nb_tenant.group|linkify }} / {% endif %} {{ object.nb_tenant|linkify|placeholder }}
{% trans "Scope" %} {% if object.scope %} {{ object.scope|linkify }} ({% trans object.scope_type.name %}) {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% include 'inc/panels/related_objects.html' %}
{% endblock content %}