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

{% trans "Syslog Policy" %}

{% 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 "Console severity" %}{{ object.get_console_severity_display }}
{% trans "Local severity" %}{{ object.get_local_severity_display }}
{% trans "Include msec" %}{{ object.include_msec|yesno }}
{% trans "Include TZ" %}{{ object.include_tz|yesno }}
{% trans "Description" %}{{ object.description|placeholder }}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/custom_fields.html' %}

{% trans "Remote destinations" %}

{% for d in object.remote_destinations.all %} {% empty %} {% endfor %}
{% trans "Host" %}{% trans "Port" %}{% trans "Severity" %}{% trans "Facility" %}
{{ d.host }} {{ d.port }} {{ d.get_severity_display }} {{ d.get_forwarding_facility_display }}
{% trans "No destinations configured." %}
{% include 'inc/panels/comments.html' %}
{% endblock %}