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 836851f commit f30acbfCopy full SHA for f30acbf
netbox_acls/forms/filtersets.py
@@ -313,9 +313,17 @@ class ACLExtendedRuleFilterForm(NetBoxModelFilterSetForm):
313
(
314
"access_list",
315
"action",
316
- "source_prefix",
317
- "desintation_prefix",
318
"protocol",
319
),
320
+ FieldSet(
+ TabbedGroups(
321
+ FieldSet('source_prefix', name=_('Prefix')),
322
+ FieldSet('source_iprange', name=_('IP Range')),
323
+ FieldSet('source_ipaddress', name=_('IP Address')),
324
+ FieldSet('source_aggregate', name=_('Aggregate')),
325
+ FieldSet('source_service', name=_('Service')),
326
+ ),
327
+ "source_ports",
328
329
)
0 commit comments