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

{% trans "SNMP Client Group" %}

{% 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 "Clients" %}

{% for c in object.clients.all %} {% empty %} {% endfor %}
{% trans "Address" %}{% trans "Name" %}
{{ c.address }}{{ c.name }}
{% trans "No clients configured." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}