Closes #7389: Linkify tenant group in tenants list

This commit is contained in:
jeremystretch 2021-09-28 16:28:11 -04:00
parent 8dc0767cdf
commit 047425dadd
2 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,7 @@
* [#7118](https://github.com/netbox-community/netbox/issues/7118) - Render URL custom fields as hyperlinks in object tables
* [#7323](https://github.com/netbox-community/netbox/issues/7323) - Add serial filter field for racks & devices
* [#7372](https://github.com/netbox-community/netbox/issues/7372) - Link to local docs for model from object add/edit views
* [#7389](https://github.com/netbox-community/netbox/issues/7389) - Linkify tenant group in tenants list
### Bug Fixes

View File

@ -68,6 +68,9 @@ class TenantTable(BaseTable):
name = tables.Column(
linkify=True
)
group = tables.Column(
linkify=True
)
comments = MarkdownColumn()
tags = TagColumn(
url_name='tenancy:tenant_list'