1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #1676: Correct filtering of child prefixes upon bulk edit/delete from the parent prefix view

This commit is contained in:
Jeremy Stretch
2017-11-02 13:21:19 -04:00
parent 626fbd1d10
commit c6f3b00f0e

View File

@ -517,6 +517,7 @@ class PrefixView(View):
'parent_prefix_table': parent_prefix_table,
'child_prefix_table': child_prefix_table,
'duplicate_prefix_table': duplicate_prefix_table,
'bulk_querystring': 'vrf_id={}&within={}'.format(prefix.vrf or '0', prefix.prefix),
'permissions': permissions,
'return_url': prefix.get_absolute_url(),
})