{% extends 'generic/object.html' %} {% load i18n %} {% load helpers %} {% load plugins %} {% block extra_controls %} {% if perms.netbox_security.change_firewallfilterrule %} Add Rule {% endif %} {% endblock extra_controls %} {% block content %}
{% trans "Firewall Filters" %}
{% if object.description %} {% endif %} {% if object.family %} {% endif %} {% if object.tenant %} {% endif %}
{% trans "Name" %} {{ object.name }}
{% trans "Rule Count" %} {{ object.rule_count|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Family" %} {% badge object.get_family_display bg_color=object.get_family_color %}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %}
Filter Rules
{% htmx_table 'plugins:netbox_security:firewallfilterrule_list' firewall_filter_id=object.pk %}
{% endblock %}