diff options
author | Sawyer Bergeron <sbergeron@iol.unh.edu> | 2019-07-02 14:21:37 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-07-02 14:21:37 +0000 |
commit | 939f90eabd3fd6ac17b0a1a0646962ead88d5e99 (patch) | |
tree | 784797b0b025235179c3a1b008551c63f5044f46 /src/templates/resource/steps/pod_definition.html | |
parent | 08ed74b95826a907ba8f9797002ef98eb2e82424 (diff) | |
parent | 661a309cdd609d514abf4b8f8d9c98021b6b9759 (diff) |
Merge "Reduce forms to required content"
Diffstat (limited to 'src/templates/resource/steps/pod_definition.html')
-rw-r--r-- | src/templates/resource/steps/pod_definition.html | 64 |
1 files changed, 32 insertions, 32 deletions
diff --git a/src/templates/resource/steps/pod_definition.html b/src/templates/resource/steps/pod_definition.html index 1558780..4c9aa83 100644 --- a/src/templates/resource/steps/pod_definition.html +++ b/src/templates/resource/steps/pod_definition.html @@ -41,43 +41,43 @@ {% csrf_token %} <input type="hidden" id="hidden_xml_input" name="xml" /> </form> + <script type="text/javascript" src="/static/js/mxClient.min.js" ></script> + <script> + //gather context data + let debug = false; + {% if debug %} + debug = true; + {% endif %} -<script> - //gather context data - let debug = false; - {% if debug %} - debug = true; - {% endif %} - - let xml = ''; - {% if xml %} - xml = '{{xml|safe}}'; - {% endif %} + let xml = ''; + {% if xml %} + xml = '{{xml|safe}}'; + {% endif %} - let hosts = []; - {% for host in hosts %} - hosts.push({{host|safe}}); - {% endfor %} + let hosts = []; + {% for host in hosts %} + hosts.push({{host|safe}}); + {% endfor %} - let added_hosts = []; - {% for host in added_hosts %} - added_hosts.push({{host|safe}}); - {% endfor %} + let added_hosts = []; + {% for host in added_hosts %} + added_hosts.push({{host|safe}}); + {% endfor %} - let removed_host_ids = {{removed_hosts|safe}}; + let removed_host_ids = {{removed_hosts|safe}}; - network_step = new NetworkStep( - debug, - xml, - hosts, - added_hosts, - removed_host_ids, - document.getElementById('graphContainer'), - document.getElementById('outlineContainer'), - document.getElementById('toolbarContainer'), - document.getElementById('sidebarContainer') - ); -</script> + network_step = new NetworkStep( + debug, + xml, + hosts, + added_hosts, + removed_host_ids, + document.getElementById('graphContainer'), + document.getElementById('outlineContainer'), + document.getElementById('toolbarContainer'), + document.getElementById('sidebarContainer') + ); + </script> {% endblock content %} {% block onleave %} network_step.submitForm(); |