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

{{ title }}

{{ title }}

Please check that the information is correct.

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

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

Tags

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