Merge pull request #20267 from pheus/19744-fix-active-column-sorting-in-plugin-table

Fixes #19744: Add accessor for is_loaded in TemplateColumn
This commit is contained in:
bctiemann 2025-09-08 13:40:19 -04:00 committed by GitHub
commit 8ebc677372
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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