mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Fixes #6740: Add import button to VM interfaces list
This commit is contained in:
parent
49a949aa97
commit
76df55dfc0
@ -1,5 +1,13 @@
|
|||||||
# NetBox v2.11
|
# NetBox v2.11
|
||||||
|
|
||||||
|
## v2.11.11 (FUTURE)
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* [#6740](https://github.com/netbox-community/netbox/issues/6740) - Add import button to VM interfaces list
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
## v2.11.10 (2021-07-28)
|
## v2.11.10 (2021-07-28)
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
@ -414,7 +414,7 @@ class VMInterfaceListView(generic.ObjectListView):
|
|||||||
filterset = filtersets.VMInterfaceFilterSet
|
filterset = filtersets.VMInterfaceFilterSet
|
||||||
filterset_form = forms.VMInterfaceFilterForm
|
filterset_form = forms.VMInterfaceFilterForm
|
||||||
table = tables.VMInterfaceTable
|
table = tables.VMInterfaceTable
|
||||||
action_buttons = ('export',)
|
action_buttons = ('import', 'export')
|
||||||
|
|
||||||
|
|
||||||
class VMInterfaceView(generic.ObjectView):
|
class VMInterfaceView(generic.ObjectView):
|
||||||
|
Loading…
Reference in New Issue
Block a user