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

{% trans "Pod Policy Group" %}

{% trans "Name" %}{{ object.name }}
{% trans "Alias" %}{{ object.name_alias|placeholder }}
{% trans "Fabric" %} {{ object.aci_fabric }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}

{% trans "Bound policies" %}

{% trans "NTP" %} {% if object.ntp_policy %}{{ object.ntp_policy }}{% else %}{% trans "not set" %}{% endif %}
{% trans "Syslog" %} {% if object.syslog_policy %}{{ object.syslog_policy }}{% else %}{% trans "not set" %}{% endif %}
{% trans "SNMP" %} {% if object.snmp_policy %}{{ object.snmp_policy }}{% else %}{% trans "not set" %}{% endif %}
{% trans "SNMP Trap" %} {% if object.snmp_trap_policy %}{{ object.snmp_trap_policy }}{% else %}{% trans "not set" %}{% endif %}
{% include 'inc/panels/comments.html' %}
{% endblock %}