{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% block content %}
{% trans "Filter Object" %}
{% trans "Name" %} {{ object.name }}
{% trans "Address Family" %} {{ object.get_family_display }}
{% trans "Description" %} {{ object.description|placeholder }}
{% if object.rules %}
{% trans "Rules" %}
{% for rule in object.rules %} {% endfor %}
{% trans "Match" %} {% trans "Value" %} {% trans "Action" %}
{{ rule.match|default:"—" }} {{ rule.value|default:"—" }} {{ rule.action|default:"—" }}
{% endif %} {% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
{% endblock %}