diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2019-07-03 13:18:25 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-07-03 13:18:25 +0000 |
commit | e0b8bb3ee3c218a65562acdc5e76f714aab92926 (patch) | |
tree | 39251fbe4626bcc2bdc3118cb13e01c2b49163a4 /src/templates/workflow | |
parent | 9e22f1782fd81a915d71d47aecc84955f9b996bc (diff) | |
parent | df2f95d0adb652b132fef7aaccfd9e3c98200c51 (diff) |
Merge "Unify Form Submission"
Diffstat (limited to 'src/templates/workflow')
-rw-r--r-- | src/templates/workflow/viewport-base.html | 15 | ||||
-rw-r--r-- | src/templates/workflow/viewport-element.html | 8 |
2 files changed, 6 insertions, 17 deletions
diff --git a/src/templates/workflow/viewport-base.html b/src/templates/workflow/viewport-base.html index ed367c7..103a095 100644 --- a/src/templates/workflow/viewport-base.html +++ b/src/templates/workflow/viewport-base.html @@ -11,7 +11,7 @@ <nav> <ul class="pagination d-flex flex-row" id="topPagination"> <li class="page-item flex-shrink-1 page-control"> - <a class="page-link" href="#" id="gob" onclick="go('prev')"> + <a class="page-link" href="#" id="gob" onclick="submit_and_go('prev')"> <i class="fas fa-backward"></i> Back </a> </li> @@ -41,7 +41,7 @@ </a> </li> <li class="page-item flex-shrink-1 page-control"> - <a class="page-link text-right" href="#" id="gof" onclick="go('next')"> + <a class="page-link text-right" href="#" id="gof" onclick="submit_and_go('next')"> Next <i class="fas fa-forward"></i> </a> </li> @@ -91,11 +91,9 @@ update_context(); var step = 0; var page_count = 0; - var context_data = false; - function go(to) { - step_on_leave(); - request_leave(to); + function submit_and_go(to) { + submitStepForm(to); } function request_leave(to) { @@ -165,8 +163,7 @@ }); } - function update_page(data) { - context_data = data; + function updateBreadcrumbs(data) { update_breadcrumbs(data); if (data["workflow_count"] == 1) { document.getElementById("cancel_btn").innerText = "Exit Workflow"; @@ -326,4 +323,4 @@ {% csrf_token %} </form> </div> -{% endblock content %}
\ No newline at end of file +{% endblock content %} diff --git a/src/templates/workflow/viewport-element.html b/src/templates/workflow/viewport-element.html index 2c917e1..bf13304 100644 --- a/src/templates/workflow/viewport-element.html +++ b/src/templates/workflow/viewport-element.html @@ -42,14 +42,6 @@ {% endblock validate_step %} - <script> - step_on_leave = function() { - {% block onleave %} - alert("override onleave"); - {% endblock %} - } - </script> - <div class="messages"> {% block element_messages %} {% bootstrap_messages %} |