Răsfoiți Sursa

Merge pull request #7970 from rhyser9/7885_linkify_vlan_name

Fixes #7885: Linkify VLAN name in VLAN tables
Jeremy Stretch 4 ani în urmă
părinte
comite
70259b0d04
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  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
     )