From 8523ad166ef91eab519bd9c93957e25153aad138 Mon Sep 17 00:00:00 2001 From: royreznik Date: Mon, 20 Sep 2021 11:39:48 -0700 Subject: [PATCH 1/2] Feature-6917 make ip assigned checkmark link to interface --- netbox/ipam/tables/ip.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/netbox/ipam/tables/ip.py b/netbox/ipam/tables/ip.py index 2e59a681c..57adbb1b8 100644 --- a/netbox/ipam/tables/ip.py +++ b/netbox/ipam/tables/ip.py @@ -318,7 +318,8 @@ class IPAddressTable(BaseTable): verbose_name='NAT (Inside)' ) assigned = BooleanColumn( - accessor='assigned_object_id', + accessor='assigned_object', + linkify=True, verbose_name='Assigned' ) tags = TagColumn( From 694bd231e33e072f69e790da39e80a99778df6c2 Mon Sep 17 00:00:00 2001 From: royreznik Date: Wed, 22 Sep 2021 06:20:59 -0700 Subject: [PATCH 2/2] Update changelog with #6917 --- docs/release-notes/version-3.0.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/release-notes/version-3.0.md b/docs/release-notes/version-3.0.md index 1fb46b106..508178a0c 100644 --- a/docs/release-notes/version-3.0.md +++ b/docs/release-notes/version-3.0.md @@ -4,6 +4,7 @@ ### Enhancements +* [#6917](https://github.com/netbox-community/netbox/issues/6917) - Make ip assigned checkmark in ip table link to interface * [#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