Merge pull request #7970 from rhyser9/7885_linkify_vlan_name

Fixes #7885: Linkify VLAN name in VLAN tables
This commit is contained in:
Jeremy Stretch 2021-12-03 09:41:28 -05:00 committed by GitHub
commit 70259b0d04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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