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

{{ title }}

{{ title }}

Please check that the information is correct.

Basic Data Info to be Entered Info to be Decoupled
PHID: {{ placeholder.phid or '' }}
Manufacturer: {{ device.manufacturer or '' }} {{ placeholder.device.manufacturer or '' }}
Model: {{ device.model or '' }} {{ placeholder.device.model or '' }}
Serial Number: {{ device.serial_number or '' }} {{ placeholder.device.serial_number or '' }}
Brand: {{ device.brand or '' }} {{ placeholder.device.brand or '' }}
Sku: {{ device.sku or '' }} {{ placeholder.device.sku or '' }}
Generation: {{ device.generation or '' }} {{ placeholder.device.generation or '' }}
Version: {{ device.version or '' }} {{ placeholder.device.version or '' }}
Weight: {{ device.weight or '' }} {{ placeholder.device.weight or '' }}
Width: {{ device.width or '' }} {{ placeholder.device.width or '' }}
Height: {{ device.height or '' }} {{ placeholder.device.height or '' }}
Depth: {{ device.depth or '' }} {{ placeholder.device.depth or '' }}
Color: {{ device.color or '' }} {{ placeholder.device.color or '' }}
Production date: {{ device.production_date or '' }} {{ placeholder.device.production_date or '' }}
Variant: {{ device.variant or '' }} {{ placeholder.device.variant or '' }}

{% if placeholder.device.components or device.components %}

Components

Info to be Entered Info to be Decoupled
{% for c in device.components %} * {{ c.verbose_name }}
{% endfor %}
{% for c in placeholder.device.components %} * {{ c.verbose_name }}
{% endfor %}
{% endif %}
{% if placeholder.device.manual_actions or device.manual_actions %}

Actions

Info to be Entered Info to be Decoupled
{% for a in device.manual_actions %} * {{ a.t }}
{% endfor %}
{% for a in placeholder.device.manual_actions %} * {{ a.t }}
{% endfor %}
{% endif %}
Cancel
{% endblock main %}