Create Engagement
diff --git a/app/modules/services/templates/services/subscriptions/edit.html b/app/modules/services/templates/services/subscriptions/edit.html
new file mode 100644
index 0000000..79a8225
--- /dev/null
+++ b/app/modules/services/templates/services/subscriptions/edit.html
@@ -0,0 +1,138 @@
+{% extends "ui/templates/base/layout.html" %}
+{% block content %}
+
+ {% set _uiux_partner_role_text = (current_user_roles or [])|join('|')|lower %}
+ {% if 'partner' in _uiux_partner_role_text %}
+ {% include "ui/templates/components/partner_navigation_v2.html" %}
+ {% endif %}
+
+
+
+
Edit Client Service Subscription
+
+ {{ plan.client.client_name }} — {{ plan.catalogue.service_name }}
+
+
+
+ Back
+
+
+
+ {% if saved %}
+
+ Subscription defaults saved. {{ updated_engagements }} open engagement(s) and {{ updated_tasks }} unfinished Staff task(s) were updated.
+
+ {% endif %}
+ {% if error %}
+
+ The subscription could not be saved. Please verify the selected team, dates, status and propagation option.
+
+ {% endif %}
+
+
+
+{% endblock %}