diff options
author | Brandon Lo <lobrandon1217@gmail.com> | 2019-07-01 15:29:07 -0400 |
---|---|---|
committer | Brandon Lo <lobrandon1217@gmail.com> | 2019-07-02 09:43:53 -0400 |
commit | 661a309cdd609d514abf4b8f8d9c98021b6b9759 (patch) | |
tree | 6e23ab9b18d6c7ac49bd8e52f479468352642f18 /src/templates/resource/steps/pod_definition.html | |
parent | 8149a888fe6f7c1c3b1b3be2b3996c6d225d5a53 (diff) |
Reduce forms to required content
Change iframe to div and ajax as a workaround
Add css and js to avoid errors in parent locations
Change-Id: I22a17ad5e5e04ff7112bd4e6ed98ba63d150fc15
Signed-off-by: Brandon Lo <lobrandon1217@gmail.com>
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(); |