{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "Alias" %} | {{ object.name_alias|placeholder }} |
| {% trans "Fabric" %} |
{{ object.aci_fabric }} |
| {% trans "Type" %} |
{% badge object.get_domain_type_display bg_color=object.get_domain_type_color %} |
| {% trans "VLAN Pool" %} |
{% if object.aci_vlan_pool %}{{ object.aci_vlan_pool }}{% else %}{{ ''|placeholder }}{% endif %} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
{% for a in object.aaeps.all %}
| {{ a.name }} |
{% empty %}
| {% trans "No AAEPs reference this domain." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}