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 bd6a575..066c1af 100644
--- a/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html
+++ b/src/servala/frontend/templates/frontend/organizations/service_offering_detail.html
@@ -9,13 +9,18 @@
{% endblock html_title %}
{% partialdef service-form %}
{% if service_form %}
- {% if form_error %}
-
- {% translate "Oops! Something went wrong with the service form generation. Please try again later." %}
+
+
+
+ {% if form_error %}
+
+ {% translate "Oops! Something went wrong with the service form generation. Please try again later." %}
+
+ {% else %}
+ {% include "includes/form.html" with form=service_form %}
+ {% endif %}
- {% else %}
- {% include "includes/form.html" with form=service_form %}
- {% endif %}
+
{% endif %}
{% endpartialdef %}
{% block content %}
@@ -35,7 +40,7 @@
- {% if offering.control_planes.all.count == 0 %}
+ {% if not has_control_planes %}
{% translate "We currently cannot offer this service, sorry!" %}
{% else %}
-
{% partial service-form %}
{% endif %}
+