diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-07-03 13:15:06 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-07-03 13:15:06 +0000 |
commit | 9e22f1782fd81a915d71d47aecc84955f9b996bc (patch) | |
tree | 4861a816c2c2176e868a078e04e350757a6c7e1a /src/templates/resource/steps/host_info.html | |
parent | e3389d42758feef5dad48e0bbcd5a0a3f6af4206 (diff) | |
parent | 7cb4c3f79394a59e0276510261550ca6bb3a4fdf (diff) |
Merge "Remove onleave + make form id's consistent"
Diffstat (limited to 'src/templates/resource/steps/host_info.html')
-rw-r--r-- | src/templates/resource/steps/host_info.html | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/templates/resource/steps/host_info.html b/src/templates/resource/steps/host_info.html index bbbafdc..3230d8f 100644 --- a/src/templates/resource/steps/host_info.html +++ b/src/templates/resource/steps/host_info.html @@ -10,7 +10,7 @@ {% else %} -<form id="host_meta_form" method="post" action="/wf/workflow/"> +<form id="step_form" method="post"> {% csrf_token %} <table> <thead> @@ -32,12 +32,3 @@ </form> {% endif %} {% endblock content %} - -{% block onleave %} -var formData = $("#host_meta_form").serialize(); -var req = new XMLHttpRequest(); -req.open("POST", "/wf/workflow/", false); -req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); -req.onerror = function() { alert("There was a problem submitting the form"); } -req.send(formData); -{% endblock %} |