From 362c52ce8b5e040e7162e6af8b42e0c3e252d296 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 21 Oct 2025 15:37:43 -0700 Subject: [PATCH] table-overflow-x-auto --- .../organizations/organization/index.html | 70 ++++++++++--------- 1 file changed, 36 insertions(+), 34 deletions(-) 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

- - - - - - - - - - - - {% if services %} - {% for service in services %} +
+
NameStatusUsagePrimary ContactRecent Template Used
+ - - - - - + + + + + - {% endfor %} - {% else %} - - - - {% endif %} - -
{{ 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') }}NameStatusUsagePrimary ContactRecent Template Used
No services found within this organization
+ + + {% 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 %}