1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #2229: Allow mapping of ConfigContexts to tenant groups

This commit is contained in:
Jeremy Stretch
2018-07-27 15:47:29 -04:00
parent 7476f522e1
commit a1e8397b6b
6 changed files with 29 additions and 10 deletions

View File

@ -218,7 +218,8 @@ class ConfigContextForm(BootstrapMixin, forms.ModelForm):
class Meta:
model = ConfigContext
fields = [
'name', 'weight', 'description', 'is_active', 'regions', 'sites', 'roles', 'platforms', 'tenants', 'data',
'name', 'weight', 'description', 'is_active', 'regions', 'sites', 'roles', 'platforms', 'tenant_groups',
'tenants', 'data',
]