From a52b5ff41940b1660c125ba54264da1236d164d7 Mon Sep 17 00:00:00 2001 From: Beverly Nguyen Date: Tue, 11 Nov 2025 12:02:26 -0800 Subject: [PATCH] Add "Delete Service" button --- .../organizations/organization/index.html | 59 +++++++++++++++++-- 1 file changed, 54 insertions(+), 5 deletions(-) diff --git a/app/templates/views/organizations/organization/index.html b/app/templates/views/organizations/organization/index.html index 1da23aac4..2f8e73b6f 100644 --- a/app/templates/views/organizations/organization/index.html +++ b/app/templates/views/organizations/organization/index.html @@ -104,7 +104,7 @@ {% if edit_service_data %}
-

Edit Service

+

Manage Service

@@ -137,6 +137,9 @@
Cancel + {% if edit_service_data.status == 'trial' or current_user.platform_admin %} + + {% endif %}
@@ -175,6 +178,51 @@ + + + + {% endif %}
@@ -239,12 +287,13 @@ {{ service.recent_template }} {% if service.active %} - {% set is_editing = edit_service_data and edit_service_data.id == service.id %} - {% if is_editing %} - Edit + {% set is_managing = edit_service_data and edit_service_data.id == service.id %} + + {% if is_managing %} + Manage {% else %} - Edit + Manage {% endif %} {% endif %}