Kaynağa Gözat

Fixes #4099: Linkify interfaces on global interfaces list

Jeremy Stretch 6 yıl önce
ebeveyn
işleme
d04626e75f
2 değiştirilmiş dosya ile 2 ekleme ve 0 silme
  1. 1 0
      docs/release-notes/version-2.7.md
  2. 1 0
      netbox/dcim/tables.py

+ 1 - 0
docs/release-notes/version-2.7.md

@@ -4,6 +4,7 @@
 
 * [#4089](https://github.com/netbox-community/netbox/issues/4089) - Selection of power outlet type during bulk update is optional
 * [#4091](https://github.com/netbox-community/netbox/issues/4091) - Fix filtering of objects by custom fields using UI search form
+* [#4099](https://github.com/netbox-community/netbox/issues/4099) - Linkify interfaces on global interfaces list
 
 # v2.7.4 (2020-02-04)
 

+ 1 - 0
netbox/dcim/tables.py

@@ -777,6 +777,7 @@ class InterfaceTable(BaseTable):
 
 class InterfaceDetailTable(DeviceComponentDetailTable):
     parent = tables.LinkColumn(order_by=('device', 'virtual_machine'))
+    name = tables.LinkColumn()
 
     class Meta(InterfaceTable.Meta):
         order_by = ('parent', 'name')