diff --git a/app/templates/views/organizations/organization/index.html b/app/templates/views/organizations/organization/index.html
index e0485d413..600405b7b 100644
--- a/app/templates/views/organizations/organization/index.html
+++ b/app/templates/views/organizations/organization/index.html
@@ -79,42 +79,44 @@
Services Overview
-
-
-
- | Name |
- Status |
- Usage |
- Primary Contact |
- Recent Template Used |
-
-
-
- {% if services %}
- {% for service in services %}
+
+
+
- | {{ service.name }} |
-
- {% if not service.active %}
- Suspended
- {% elif service.restricted %}
- Trial
- {% else %}
- Live
- {% endif %}
- |
- {{ service.usage|default('N/A') }} |
- {{ service.primary_contact|default('N/A') }} |
- {{ service.recent_template|default('N/A') }} |
+ Name |
+ Status |
+ Usage |
+ Primary Contact |
+ Recent Template Used |
- {% endfor %}
- {% else %}
-
- | No services found within this organization |
-
- {% endif %}
-
-
+
+
+ {% if services %}
+ {% for service in services %}
+
+ | {{ service.name }} |
+
+ {% if not service.active %}
+ Suspended
+ {% elif service.restricted %}
+ Trial
+ {% else %}
+ Live
+ {% endif %}
+ |
+ {{ service.usage|default('N/A') }} |
+ {{ service.primary_contact|default('N/A') }} |
+ {{ service.recent_template|default('N/A') }} |
+
+ {% endfor %}
+ {% else %}
+
+ | No services found within this organization |
+
+ {% endif %}
+
+
+
{% endblock %}