{% extends 'generic/object.html' %}
{% load helpers %}
{% load i18n %}
{% block content %}
| {% trans "Name" %} | {{ object.name }} |
| {% trans "SNMP Policy" %} |
{{ object.snmp_policy }} |
| {% trans "Management EPG" %} | {{ object.mgmt_epg|placeholder }} |
| {% trans "Description" %} | {{ object.description|placeholder }} |
{% include 'inc/panels/tags.html' %}
{% include 'inc/panels/custom_fields.html' %}
| {% trans "Address" %} | {% trans "Name" %} |
{% for c in object.clients.all %}
| {{ c.address }} | {{ c.name }} |
{% empty %}
| {% trans "No clients configured." %} |
{% endfor %}
{% include 'inc/panels/comments.html' %}
{% endblock %}