Closes #7681: Add service_id field for provider networks

This commit is contained in:
jeremystretch
2021-12-23 13:50:01 -05:00
parent a03ae295f6
commit bffd22038b
12 changed files with 48 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ class ProviderNetworkCSVForm(CustomFieldModelCSVForm):
class Meta:
model = ProviderNetwork
fields = [
'provider', 'name', 'description', 'comments',
'provider', 'name', 'service_id', 'description', 'comments',
]