Skip to content

Commit 047425d

Browse files
committed
Closes #7389: Linkify tenant group in tenants list
1 parent 8dc0767 commit 047425d

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

docs/release-notes/version-3.0.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* [#7118](https://github.com/netbox-community/netbox/issues/7118) - Render URL custom fields as hyperlinks in object tables
1111
* [#7323](https://github.com/netbox-community/netbox/issues/7323) - Add serial filter field for racks & devices
1212
* [#7372](https://github.com/netbox-community/netbox/issues/7372) - Link to local docs for model from object add/edit views
13+
* [#7389](https://github.com/netbox-community/netbox/issues/7389) - Linkify tenant group in tenants list
1314

1415
### Bug Fixes
1516

netbox/tenancy/tables.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@ class TenantTable(BaseTable):
6868
name = tables.Column(
6969
linkify=True
7070
)
71+
group = tables.Column(
72+
linkify=True
73+
)
7174
comments = MarkdownColumn()
7275
tags = TagColumn(
7376
url_name='tenancy:tenant_list'

0 commit comments

Comments
 (0)