{% extends "ui/base-devices.html" %} {% load url from future %} {% load di i18n icons cmdb query %} {% block content %} {% if deployment_status %}
The deployment is running. Deployment status: {{ deployment_status }} Status of plugins execution: {% for plugin in plugins %} {{ plugin.name }} {% endfor %}
{% endif %} {% if changed_addresses %}

Scan detected changes for the following IP addresses (click to see the change):

{% endif %}
{% include 'ui/device-form.html' with form=form %}
{% csrf_token %}
{% if property_form %} {% include 'ui/device-properties.html' with form=property_form %} {% endif %} {% extra_inclusion "ralph_device_owner_table" device %} {% if device.parent %} {% endif %} {% if device.logical_parent %} {% endif %} {% if device.model.type == dt.blade_server.id %} {% if device.parent.management %} {% endif %} {% endif %} {% if device.model.type == dt.virtual_server.id %} {% if device.management %} {% endif %} {% else %} {% if device.find_management %} {% endif %} {% endif %} {% for child in device.child_set.all %} {% if not child.deleted %} {% endif %} {% endfor %} {% for child in device.logicalchild_set.all %} {% if not child.deleted %} {% endif %} {% endfor %}
Parent device {{ device.parent|device_icon }} {{ device.parent.name }}
Logical parent device {{ device.logical_parent|device_icon }} {{ device.logical_parent.name }}
Blade System {{ device.parent|device_icon }} {{ device.parent.name }}
Blade System Management Address {{ device.parent.management|address_icon }} {{ device.parent.management }}
Virtual Server Hypervisor {{ device.parent|device_icon }} {{ device.parent.name }}
Head Node Management Address {{ device.management|address_icon }} {{ device.management }}
Server Management Address {{ device.find_management|address_icon }} {{ device.find_management }}
Child device {{ child|device_icon }}{{ child.name }}
Logical child device {{ child|device_icon }}{{ child.name }}
{% if network_connections %} {% for connections_type, connections_items in network_connections %} {% if connections_items %} {% for conn in connections_items %} {% if connections_type == "inbound" %} {% else %} {% endif %} {% endfor %} {% endif %} {% endfor %}
This Device Port Connected Device Connected Device Port
{{ conn.networkconnection.inbound_port }} {{ conn.outbound|device_icon }} {{ conn.outbound.name }} {{ conn.networkconnection.outbound_port }}{{ conn.networkconnection.outbound_port }} {{ conn.inbound|device_icon }} {{ conn.inbound.name }} {{ conn.networkconnection.inbound_port }}
{% endif %}
{% endblock content %}