From 7cb4c3f79394a59e0276510261550ca6bb3a4fdf Mon Sep 17 00:00:00 2001 From: Sawyer Bergeron Date: Tue, 2 Jul 2019 13:27:43 -0400 Subject: Remove onleave + make form id's consistent Change-Id: If167ae98226adfccfcfe2baa356370454a9931b4 Signed-off-by: Sawyer Bergeron --- src/templates/config_bundle/steps/config_software.html | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'src/templates/config_bundle/steps/config_software.html') diff --git a/src/templates/config_bundle/steps/config_software.html b/src/templates/config_bundle/steps/config_software.html index 68417bc..6fe0ac1 100644 --- a/src/templates/config_bundle/steps/config_software.html +++ b/src/templates/config_bundle/steps/config_software.html @@ -5,7 +5,7 @@ {% block content %} -
+ {% csrf_token %}

Give it a name:

{% bootstrap_field form.name %} @@ -16,13 +16,3 @@ {% endblock content %} - -{% block onleave %} -var ajaxForm = $("#software_config_form"); -var formData = ajaxForm.serialize(); -req = new XMLHttpRequest(); -req.open("POST", "/wf/workflow/", false); -req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); -req.onerror = function() { alert("problem submitting form"); } -req.send(formData); -{% endblock %} -- cgit 1.2.3-korg