Fixed sync problem which will cause MAAS failed
Change-Id: I73221668629b476b0b126419b00a5e455ee22a6f
diff --git a/xos/admin.py b/xos/admin.py
index dffee2e..e3434ce 100644
--- a/xos/admin.py
+++ b/xos/admin.py
@@ -27,8 +27,8 @@
class VSGWServiceAdmin(ReadOnlyAwareAdmin):
model = VSGWService
- verbose_name = SERVICE_NAME_VERBOSE
- verbose_name_plural = SERVICE_NAME_VERBOSE_PLURAL
+ verbose_name = "VSGW Service"
+ verbose_name_plural = "VSGW Service"
form = VSGWServiceForm
inlines = [SliceInline]
@@ -95,8 +95,8 @@
class VSGWTenantAdmin(ReadOnlyAwareAdmin):
- verbose_name = TENANT_NAME_VERBOSE
- verbose_name_plural = TENANT_NAME_VERBOSE_PLURAL
+ verbose_name = "VSGW Component"
+ verbose_name_plural = "VSGW Component"
list_display = ('id', 'backend_status_icon', 'instance', 'tenant_message', 'image_name')
list_display_links = ('backend_status_icon', 'instance', 'tenant_message', 'id', 'image_name')