{% 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 "Tenant" %} |
{% if object.aci_tenant %}{{ object.aci_tenant }}{% else %}{% trans "fabric-wide" %}{% endif %} |
| {% trans "Admin state" %} | {{ object.get_admin_state_display }} |
| {% trans "Contact" %} | {{ object.contact|placeholder }} |
| {% trans "Location" %} | {{ object.location|placeholder }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| {% trans "Community" %} | {% trans "Description" %} |
{% for c in object.communities.all %}
| {{ c.name }} | {{ c.description|placeholder }} |
{% empty %}
| {% trans "No communities configured." %} |
{% endfor %}
| {% trans "Group" %} | {% trans "Management EPG" %} |
{% for g in object.client_groups.all %}
| {{ g.name }} | {{ g.mgmt_epg|placeholder }} |
{% empty %}
| {% trans "No client groups configured." %} |
{% endfor %}
| {% trans "User" %} | {% trans "Auth" %} | {% trans "Privacy" %} |
{% for u in object.v3_users.all %}
| {{ u.name }} |
{{ u.get_auth_protocol_display }} |
{{ u.get_privacy_protocol_display }} |
{% empty %}
| {% trans "No SNMPv3 users configured." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}