{% extends 'base.html' %} {% load static %} {% load humanize %} {% block content %}

{{product.name|upper}} ({{product.code|upper}})

{% include 'partials/_messages.html' %}
Product Details
{% if product.image %} {{ product.name }} {% else %} No image {% endif %}
Product Type {{product.type}}
Model Name ID {{product.code}}
Device Model {{product.model_id}}
Product Name {{product.name}}
Description {{product.description}}
Temperature Unit {{product.default_temperature}}
Density Unit {{product.default_density}}
Catalog {% if product.catelog_link %} View Catalog (PDF) {% else %} No catalog available {% endif %}
Is_manual_integration {% if product.is_manual_integration %}YES{% else %}NO{% endif %}
Is_QR_integration {% if product.is_QR_integration %}YES{% else %}NO{% endif %}
Is_bluetooth_integration {% if product.is_bluetooth_integration %}YES{% else %}NO{% endif %}
Is_manual_result_reading {% if product.is_manual_result_reading %}YES{% else %}NO{% endif %}
Is_qr_result_reading {% if product.is_qr_result_reading %}YES{% else %}NO{% endif %}
Is_bluetooth_result_reading {% if product.is_bluetooth_result_reading %}YES{% else %}NO{% endif %}
Available for Device Pairing {% if product.available_for_device_pairing %}YES{% else %}NO{% endif %}
Status {{product.status}}
Created At {{product.created_At}}
Updated At {{product.updated_At}}
Created User {{product.created_user}}
Updated User {{product.updated_user}}
{% endblock %}