File tree 2 files changed +1
-2
lines changed
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
* [ #6100 ] ( https://github.com/netbox-community/netbox/issues/6100 ) - Fix VM interfaces table "add interfaces" link
8
8
* [ #6104 ] ( https://github.com/netbox-community/netbox/issues/6104 ) - Fix location column on racks table
9
+ * [ #6105 ] ( https://github.com/netbox-community/netbox/issues/6105 ) - Hide checkboxes for VMs under cluster VMs view
9
10
10
11
---
11
12
Original file line number Diff line number Diff line change @@ -163,8 +163,6 @@ class ClusterVirtualMachinesView(generic.ObjectView):
163
163
def get_extra_context (self , request , instance ):
164
164
virtualmachines = VirtualMachine .objects .restrict (request .user , 'view' ).filter (cluster = instance )
165
165
virtualmachines_table = tables .VirtualMachineTable (virtualmachines , orderable = False )
166
- if request .user .has_perm ('virtualization.change_cluster' ):
167
- virtualmachines_table .columns .show ('pk' )
168
166
169
167
return {
170
168
'virtualmachines_table' : virtualmachines_table ,
You can’t perform that action at this time.
0 commit comments