Fix breadcrumbs
diff --git a/xos/helloworldservice/admin.py b/xos/helloworldservice/admin.py
index d437c9a..81528e7 100644
--- a/xos/helloworldservice/admin.py
+++ b/xos/helloworldservice/admin.py
@@ -119,7 +119,7 @@
 class HelloWorldTenantAdmin(ReadOnlyAwareAdmin):
     verbose_name = "Hello World Tenant"
     verbose_name_plural = "Hello World Tenants"
-    list_display = ('backend_status_icon', 'instance', 'display_message', 'id')
+    list_display = ('id', 'backend_status_icon', 'instance', 'display_message')
     list_display_links = ('backend_status_icon', 'instance', 'display_message',
                           'id')
     fieldsets = [(None, {'fields': ['backend_status_text', 'kind',
diff --git a/xos/helloworldservice/models.py b/xos/helloworldservice/models.py
index 8c5e303..3059ea8 100644
--- a/xos/helloworldservice/models.py
+++ b/xos/helloworldservice/models.py
@@ -15,7 +15,7 @@
         # behavior. In this case HelloWorldService is a Service in the database.
         proxy = True
         # The name used to find this service, all directories are named this
-        app_label = "helloworldservice"
+        app_label = "Hello World Service"
         verbose_name = "Hello World Service"
 
 # This is the class to represent the tenant. Most of the logic is given to use