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

{{ title }}

New Device
{% if form.form_errors %}

{% for error in form.form_errors %} {{ error }}
{% endfor %}

{% endif %}
{{ form.csrf_token }}
Type of devices
{{ form.label(class_="form-control") }} Label that you want link to this device
{{ form.serial_number(class_="form-control") }} Serial number of this device
{{ form.model(class_="form-control") }} Name of model
{{ form.manufacturer(class_="form-control") }} Name of manufacturer
Rate the imperfections that affect the device aesthetically, but not its use.
It qualifies the defects of a device that affect its use.
{{ form.brand(class_="form-control") }} A naming for consumers. This field can represent several models, so it can be ambiguous, and it is not used to identify the product.
{{ form.generation(class_="form-control") }} The generation of the device.
{{ form.version(class_="form-control") }} The version code o fthis device, like 'v1' or 'A001'.
{{ form.weight(class_="form-control") }} The weight of the device in Kg.
{{ form.width(class_="form-control") }} The width of the device in meters.
{{ form.height(class_="form-control") }} The height of the device in meters.
{{ form.depth(class_="form-control") }} The depth of the device in meters.
{{ form.variant(class_="form-control") }} A variant or sub-model of the device.
{{ form.sku(class_="form-control") }} The Stock Keeping Unit (SKU), i.e. a merchant-specific identifier for a product or service.
{{ form.image(class_="form-control") }} An URL containing an image of the device.
{{ form.imei(class_="form-control") }} A number from 14 to 16 digits.
{{ form.meid(class_="form-control") }} 14 hexadecimal digits.
{{ form.resolution(class_="form-control") }} The resolution width of the screen.
{{ form.screen(class_="form-control") }} The size of the screen.
Cancel
{% endblock main %}