diff --git a/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html b/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html
index d375344..4f0f00e 100644
--- a/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html
+++ b/src/servala/frontend/templates/frontend/organizations/service_instance_detail.html
@@ -102,7 +102,16 @@
{% endif %}
- {% include "includes/control_plane_user_info.html" with control_plane=instance.context.control_plane %}
+ {% if control_plane.user_info %}
+
+
+
+ {% include "includes/control_plane_user_info.html" with control_plane=instance.context.control_plane %}
+
+
+ {% endif %}
{% if instance.spec and spec_fieldsets %}
diff --git a/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html b/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html
index 842e610..df57811 100644
--- a/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html
+++ b/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html
@@ -7,9 +7,14 @@
{{ offering }}
{% endblock page_title %}
{% endblock html_title %}
-{% partialdef control-plane-info %}
-{% if selected_plane %}
- {% include "includes/control_plane_user_info.html" with control_plane=selected_plane %}
+{% partialdef control-plane-info inline=True %}
+{% if selected_plane and selected_plane.user_info %}
+
+
+
{% translate "Service Provider Zone Information" %}
+ {% include "includes/control_plane_user_info.html" with control_plane=selected_plane %}
+
+
{% endif %}
{% endpartialdef %}
{% partialdef service-form %}
@@ -31,7 +36,7 @@
{% block content %}
-
+
{% endblock content %}
diff --git a/src/servala/frontend/templates/includes/control_plane_user_info.html b/src/servala/frontend/templates/includes/control_plane_user_info.html
index b9ffe99..e8fcee8 100644
--- a/src/servala/frontend/templates/includes/control_plane_user_info.html
+++ b/src/servala/frontend/templates/includes/control_plane_user_info.html
@@ -1,26 +1,15 @@
{% load i18n %}
-{% comment %}
-Reusable snippet for displaying ControlPlane user_info
-Usage: {% include "includes/control_plane_user_info.html" with control_plane=control_plane_object %}
-{% endcomment %}
{% if control_plane.user_info %}
-
-
-
-
-
-
- {% for key, value in control_plane.user_info.items %}
-
- | {{ key }} |
- {{ value }} |
-
- {% endfor %}
-
-
-
-
+
+
+
+ {% for key, value in control_plane.user_info.items %}
+
+ | {{ key }} |
+ {{ value }} |
+
+ {% endfor %}
+
+
{% endif %}