فهرست منبع

netbox-community/netbox#7885: Linkify VLAN name in VLAN tables

Rhys Barrie 4 سال پیش
والد
کامیت
f1466d6da3
1فایلهای تغییر یافته به همراه3 افزوده شده و 0 حذف شده
  1. 3 0
      netbox/ipam/tables/vlans.py

+ 3 - 0
netbox/ipam/tables/vlans.py

@@ -95,6 +95,9 @@ class VLANTable(BaseTable):
         template_code=VLAN_LINK,
         verbose_name='VID'
     )
+    name = tables.Column(
+        linkify=True
+    )
     site = tables.Column(
         linkify=True
     )