diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2018-10-23 19:52:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-10-23 19:52:35 +0000 |
commit | d734ac204f21fb21f1448f4ae2a7c4ec1b735663 (patch) | |
tree | b3cbe0eb21717403ed75912f1224fed84f626bd3 /dashboard/src | |
parent | 8db93f9d0e1c98566b007695a4d3d14f3195a50b (diff) | |
parent | 17c60b4b1f77358f8f7a6a455292d88641b11e05 (diff) |
Merge "Added template"
Diffstat (limited to 'dashboard/src')
-rw-r--r-- | dashboard/src/templates/resource/steps/meta_info.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/dashboard/src/templates/resource/steps/meta_info.html b/dashboard/src/templates/resource/steps/meta_info.html new file mode 100644 index 0000000..389ff6d --- /dev/null +++ b/dashboard/src/templates/resource/steps/meta_info.html @@ -0,0 +1,18 @@ +{% extends "workflow/viewport-element.html" %} +{% load staticfiles %} + +{% load bootstrap3 %} + +{% block content %} + +<form id="resource_meta_form" method="post" action="/wf/workflow/"> + {% csrf_token %} + <table> + {{form}} + </table> +</form> +{% endblock content %} + +{% block onleave %} +document.getElementById("resource_meta_form").submit(); +{% endblock %} |