Просмотр исходного кода

Closes #8462: Linkify manufacturer column in device type table

jeremystretch 4 лет назад
Родитель
Сommit
2221006970
2 измененных файлов с 4 добавлено и 0 удалено
  1. 1 0
      docs/release-notes/version-3.1.md
  2. 3 0
      netbox/dcim/tables/devicetypes.py

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

@@ -8,6 +8,7 @@
 * [#8367](https://github.com/netbox-community/netbox/issues/8367) - Add ASNs to global search function
 * [#8368](https://github.com/netbox-community/netbox/issues/8368) - Enable controlling the order of custom script form fields with `field_order`
 * [#8381](https://github.com/netbox-community/netbox/issues/8381) - Add contacts to global search function
+* [#8462](https://github.com/netbox-community/netbox/issues/8462) - Linkify manufacturer column in device type table
 * [#8476](https://github.com/netbox-community/netbox/issues/8476) - Bring the ASN Web UI up to the standard set by other objects
 
 ### Bug Fixes

+ 3 - 0
netbox/dcim/tables/devicetypes.py

@@ -67,6 +67,9 @@ class DeviceTypeTable(BaseTable):
         linkify=True,
         verbose_name='Device Type'
     )
+    manufacturer = tables.Column(
+        linkify=True
+    )
     is_full_depth = BooleanColumn(
         verbose_name='Full Depth'
     )