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

{% trans "BD Subnet" %}

{% trans "Bridge Domain" %} {{ object.aci_bridge_domain|linkify }}
{% trans "Gateway IP (IPAM)" %} {{ object.gateway_ipam_ip_address|linkify|placeholder }}
{% trans "Gateway IP (legacy)" %} {{ object.gateway_ip|placeholder }}
{% trans "NetBox prefix" %} {{ object.nb_prefix|linkify|placeholder }}
{% trans "Scope" %} {% if object.scope_public %}public{% endif %} {% if object.scope_shared %}shared{% endif %} {% if object.scope_private %}private{% endif %}
{% trans "Primary" %}{{ object.is_primary|yesno }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/comments.html' %}
{% endblock %}