We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 834ab7d commit f8cd877Copy full SHA for f8cd877
netbox_acls/forms/filtersets.py
@@ -335,4 +335,14 @@ class ACLExtendedRuleFilterForm(NetBoxModelFilterSetForm):
335
),
336
"source_ports",
337
338
+ FieldSet(
339
+ TabbedGroups(
340
+ FieldSet('destination_prefix', name=_('Prefix')),
341
+ FieldSet('destination_iprange', name=_('IP Range')),
342
+ FieldSet('destination_ipaddress', name=_('IP Address')),
343
+ FieldSet('destination_aggregate', name=_('Aggregate')),
344
+ FieldSet('destination_service', name=_('Service')),
345
+ ),
346
+ "destination_ports",
347
348
)
0 commit comments