@@ -112,7 +112,7 @@ class ExportTemplateForm(BootstrapMixin, SyncedDataMixin, forms.ModelForm):
112
112
113
113
fieldsets = (
114
114
('Export Template' , ('name' , 'content_types' , 'description' , 'template_code' )),
115
- ('Data Source' , ('data_source' , 'data_file' )),
115
+ ('Data Source' , ('data_source' , 'data_file' , 'auto_sync_enabled' )),
116
116
('Rendering' , ('mime_type' , 'file_extension' , 'as_attachment' )),
117
117
)
118
118
@@ -271,7 +271,7 @@ class ConfigContextForm(BootstrapMixin, SyncedDataMixin, forms.ModelForm):
271
271
272
272
fieldsets = (
273
273
('Config Context' , ('name' , 'weight' , 'description' , 'data' , 'is_active' )),
274
- ('Data Source' , ('data_source' , 'data_file' )),
274
+ ('Data Source' , ('data_source' , 'data_file' , 'auto_sync_enabled' )),
275
275
('Assignment' , (
276
276
'regions' , 'site_groups' , 'sites' , 'locations' , 'device_types' , 'roles' , 'platforms' , 'cluster_types' ,
277
277
'cluster_groups' , 'clusters' , 'tenant_groups' , 'tenants' , 'tags' ,
@@ -283,7 +283,7 @@ class Meta:
283
283
fields = (
284
284
'name' , 'weight' , 'description' , 'data' , 'is_active' , 'regions' , 'site_groups' , 'sites' , 'locations' ,
285
285
'roles' , 'device_types' , 'platforms' , 'cluster_types' , 'cluster_groups' , 'clusters' , 'tenant_groups' ,
286
- 'tenants' , 'tags' , 'data_source' , 'data_file' ,
286
+ 'tenants' , 'tags' , 'data_source' , 'data_file' , 'auto_sync_enabled' ,
287
287
)
288
288
289
289
def __init__ (self , * args , initial = None , ** kwargs ):
@@ -322,7 +322,7 @@ class ConfigTemplateForm(BootstrapMixin, SyncedDataMixin, forms.ModelForm):
322
322
fieldsets = (
323
323
('Config Template' , ('name' , 'description' , 'environment_params' , 'tags' )),
324
324
('Content' , ('template_code' ,)),
325
- ('Data Source' , ('data_source' , 'data_file' )),
325
+ ('Data Source' , ('data_source' , 'data_file' , 'auto_sync_enabled' )),
326
326
)
327
327
328
328
class Meta :
0 commit comments