mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-21 03:27:21 -06:00
Fixes #6106: Allow assigning a virtual interface as the parent of an existing interface
This commit is contained in:
parent
38b09dc610
commit
81193eb550
@ -7,6 +7,7 @@
|
|||||||
* [#6100](https://github.com/netbox-community/netbox/issues/6100) - Fix VM interfaces table "add interfaces" link
|
* [#6100](https://github.com/netbox-community/netbox/issues/6100) - Fix VM interfaces table "add interfaces" link
|
||||||
* [#6104](https://github.com/netbox-community/netbox/issues/6104) - Fix location column on racks table
|
* [#6104](https://github.com/netbox-community/netbox/issues/6104) - Fix location column on racks table
|
||||||
* [#6105](https://github.com/netbox-community/netbox/issues/6105) - Hide checkboxes for VMs under cluster VMs view
|
* [#6105](https://github.com/netbox-community/netbox/issues/6105) - Hide checkboxes for VMs under cluster VMs view
|
||||||
|
* [#6106](https://github.com/netbox-community/netbox/issues/6106) - Allow assigning a virtual interface as the parent of an existing interface
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -3072,10 +3072,7 @@ class InterfaceForm(BootstrapMixin, InterfaceCommonForm, CustomFieldModelForm):
|
|||||||
parent = DynamicModelChoiceField(
|
parent = DynamicModelChoiceField(
|
||||||
queryset=Interface.objects.all(),
|
queryset=Interface.objects.all(),
|
||||||
required=False,
|
required=False,
|
||||||
label='Parent interface',
|
label='Parent interface'
|
||||||
query_params={
|
|
||||||
'kind': 'physical',
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
lag = DynamicModelChoiceField(
|
lag = DynamicModelChoiceField(
|
||||||
queryset=Interface.objects.all(),
|
queryset=Interface.objects.all(),
|
||||||
|
Loading…
Reference in New Issue
Block a user