Explorar o código

Closes #7389: Linkify tenant group in tenants list

jeremystretch %!s(int64=4) %!d(string=hai) anos
pai
achega
047425dadd
Modificáronse 2 ficheiros con 4 adicións e 0 borrados
  1. 1 0
      docs/release-notes/version-3.0.md
  2. 3 0
      netbox/tenancy/tables.py

+ 1 - 0
docs/release-notes/version-3.0.md

@@ -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
 

+ 3 - 0
netbox/tenancy/tables.py

@@ -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'