From f9159ad9bd7fc66b6214f8058245c184b99449bb Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Fri, 5 Sep 2025 10:55:58 +0200 Subject: [PATCH] fix(plugins): Add accessor for is_loaded in TemplateColumn Adds the `accessor` attribute with `tables.A('is_loaded')` to the `is_installed` column in the plugin's table. This ensures proper data access and improves the table's functionality. Fixes #19744 --- netbox/core/tables/plugins.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/core/tables/plugins.py b/netbox/core/tables/plugins.py index e1b80af42..f02442b36 100644 --- a/netbox/core/tables/plugins.py +++ b/netbox/core/tables/plugins.py @@ -61,6 +61,7 @@ class CatalogPluginTable(BaseTable): verbose_name=_('Local') ) is_installed = columns.TemplateColumn( + accessor=tables.A('is_loaded'), verbose_name=_('Active'), template_code=PLUGIN_IS_INSTALLED )