{% extends "ereuse_devicehub/base_site.html" %} {% block main %}

{{ title }}

{{ title }}

Please check that the information is correct.

This is a binding between: 

    {% if new_placeholder.is_abstract %}
  • 1. Device abstract with DHID:{{ new_placeholder.device.devicehub_id }} and PHID: {{ new_placeholder.phid }}
  • 2. Device real with DHID: {{ old_placeholder.device.devicehub_id }} and PHID:{{ old_placeholder.phid }}
  • {% else %}
  • 1. Device abstract with DHID:{{ old_placeholder.device.devicehub_id }} and PHID: {{ old_placeholder.phid }}
  • 2. Device real with DHID: {{ new_placeholder.device.devicehub_id }} and PHID:{{ new_placeholder.phid }}
  • {% endif %}

The DHID and PHID information of the abstract will be lost.

The information in red colour will be losted and replaced by the information in green colour.
The information in orange will be replaced by the information in green and you always can recover it by doing an unbinding action or find this information into device details web.

Basic Data Info Twin device Info Abstract device
Manufacturer: {{ new_placeholder.device.manufacturer or '' }} {{ old_placeholder.device.manufacturer or '' }}
Model: {{ new_placeholder.device.model or '' }} {{ old_placeholder.device.model or '' }}
Serial Number: {{ new_placeholder.device.serial_number or '' }} {{ old_placeholder.device.serial_number or '' }}
Brand: {{ new_placeholder.device.brand or '' }} {{ old_placeholder.device.brand or '' }}
Sku: {{ new_placeholder.device.sku or '' }} {{ old_placeholder.device.sku or '' }}
Generation: {{ new_placeholder.device.generation or '' }} {{ old_placeholder.device.generation or '' }}
Version: {{ new_placeholder.device.version or '' }} {{ old_placeholder.device.version or '' }}
Weight: {{ new_placeholder.device.weight or '' }} {{ old_placeholder.device.weight or '' }}
Width: {{ new_placeholder.device.width or '' }} {{ old_placeholder.device.width or '' }}
Height: {{ new_placeholder.device.height or '' }} {{ old_placeholder.device.height or '' }}
Depth: {{ new_placeholder.device.depth or '' }} {{ old_placeholder.device.depth or '' }}
Color: {{ new_placeholder.device.color or '' }} {{ old_placeholder.device.color or '' }}
Production date: {{ new_placeholder.device.production_date or '' }} {{ old_placeholder.device.production_date or '' }}
Variant: {{ new_placeholder.device.variant or '' }} {{ old_placeholder.device.variant or '' }}

{% if new_placeholder.device.components or old_placeholder.device.components %}

Components

Info Twin device Info Abstract device
{% for c in new_placeholder.device.components %} * {{ c.verbose_name }}
{% endfor %}
{% for c in old_placeholder.device.components %} * {{ c.verbose_name }}
{% endfor %}
{% endif %}
{% if actions %}

Actions

The actions will become real device and will no longer be in the abstract

Info Twin device Info Abstract device
{% for a in actions %} * {{ a.t }}
{% endfor %}
{% endif %}
{% if tags %}

Tags

The tags will become real device and will no longer be in the abstract

Info Twin device Info Abstract device
{% for tag in tags %} * {{ tag.id }}
{% endfor %}
{% endif %}
Cancel
{% endblock main %}