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/booking/steps/booking_meta.html | |
parent | e3389d42758feef5dad48e0bbcd5a0a3f6af4206 (diff) | |
parent | 7cb4c3f79394a59e0276510261550ca6bb3a4fdf (diff) |
Merge "Remove onleave + make form id's consistent"
Diffstat (limited to 'src/templates/booking/steps/booking_meta.html')
-rw-r--r-- | src/templates/booking/steps/booking_meta.html | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/templates/booking/steps/booking_meta.html b/src/templates/booking/steps/booking_meta.html index a7bb8b9..f12496e 100644 --- a/src/templates/booking/steps/booking_meta.html +++ b/src/templates/booking/steps/booking_meta.html @@ -6,7 +6,7 @@ {% block content %} {% bootstrap_form_errors form type='non_fields' %} -<form id="booking_meta_form" action="/wf/workflow/" method="POST" class="form"> +<form id="step_form" method="POST" class="form"> {% csrf_token %} <div id="form_div" class="container-fluid"> <div class="row"> @@ -36,13 +36,3 @@ </div> </form> {% endblock content %} - -{% block onleave %} -var ajaxForm = $("#booking_meta_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 %} |