From ec7afccd5524d619b56aa43d07cd70bd04d9bf7b Mon Sep 17 00:00:00 2001 From: ifoughali Date: Fri, 21 Nov 2025 08:23:23 +0100 Subject: [PATCH] Feat: added auto_sync_enabled property to ConfigTemplateTable class --- netbox/extras/tables/tables.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netbox/extras/tables/tables.py b/netbox/extras/tables/tables.py index e89d06c40..404d7ac12 100644 --- a/netbox/extras/tables/tables.py +++ b/netbox/extras/tables/tables.py @@ -632,6 +632,10 @@ class ConfigTemplateTable(NetBoxTable): orderable=False, verbose_name=_('Synced') ) + auto_sync_enabled = columns.BooleanColumn( + verbose_name=_('Auto Sync Enabled'), + orderable=False, + ) mime_type = tables.Column( verbose_name=_('MIME Type') )