{% 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 "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| {% trans "Host" %} | {% trans "Port" %} | {% trans "Version" %} | {% trans "Community/User" %} |
{% for d in object.destinations.all %}
| {{ d.host }} |
{{ d.port }} |
{{ d.get_version_display }} |
{{ d.community_or_user|placeholder }} |
{% empty %}
| {% trans "No trap destinations configured." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}