+ Remove
+ {# Use data-force-action to take esc out of the equation and pass cancel_button_resets_ds_form to effectuate a reset in the view #}
+
+
+
+
{% endfor %}
diff --git a/src/registrar/views/domain.py b/src/registrar/views/domain.py
index 59b206993..aaad016a7 100644
--- a/src/registrar/views/domain.py
+++ b/src/registrar/views/domain.py
@@ -625,6 +625,21 @@ class DomainUsersView(DomainBaseView):
template_name = "domain_users.html"
+ def get_context_data(self, **kwargs):
+ """The initial value for the form (which is a formset here)."""
+ context = super().get_context_data(**kwargs)
+
+ # Create HTML for the modal button
+ modal_button = (
+ ''
+ )
+
+ context["modal_button"] = modal_button
+
+ return context
+
class DomainAddUserView(DomainFormBaseView):
"""Inside of a domain's user management, a form for adding users.