diff --git a/tabula/tabula/templates/_services.html b/tabula/tabula/templates/_services.html index 6a1fbb7..264cbea 100644 --- a/tabula/tabula/templates/_services.html +++ b/tabula/tabula/templates/_services.html @@ -2,6 +2,9 @@

{% trans "Service Details" %}

- Name: {{ service.name }} - ID: {{ service.id }} +
+
+

Name: {{ service }}

+

ID: {{ service_name }}

+

ID: {{ context }}

\ No newline at end of file diff --git a/tabula/tabula/windc/views.py b/tabula/tabula/windc/views.py index 86e1326..7d32a3e 100644 --- a/tabula/tabula/windc/views.py +++ b/tabula/tabula/windc/views.py @@ -178,7 +178,8 @@ class WinServices(tables.DataTableView): exceptions.handle(self.request, _('Unable to retrieve list of services for ' 'data center "%s".') % self.dc_name) - return services + self._services = services + return self._services class DetailServiceView(tabs.TabView):