{% extends 'base.html' %} {% load static %} {% block content %} Add New Product All fields marked with an asterisk (*) are required {% include 'partials/_messages.html' %} {% csrf_token %} Product Details Product Image {% if product.image %} Current Image {% endif %} Upload PNG, max 512 KB. Leave empty to keep current image. Product Type {% for product_type in product_type_list %} {% if product_type|lower == old_input_field_values.product_type|lower %} {{product_type|upper}} {% else %} {{product_type|upper}} {% endif %} {% endfor %} Product Name Product Brand {% for product_brand in brand_list %} {% if product_brand|lower == old_input_field_values.product_brand|lower %} {{product_brand|upper}} {% else %} {{product_brand|upper}} {% endif %} {% endfor %} Device Model Model Name ID Description Temperature Unit {% for default_temperature in default_temperature_list %} {% if default_temperature|lower == old_input_field_values.default_temperature|lower %} {{default_temperature|upper}} {% else %} {{default_temperature|upper}} {% endif %} {% endfor %} Density unit {% for default_density in default_density_list %} {% if default_density|lower == old_input_field_values.default_density|lower %} {{default_density|upper}} {% else %} {{default_density|upper}} {% endif %} {% endfor %} Catalog Link Product Integration Type Manual Integration Yes No QR Integration Yes No Bluetooth Integration Yes No Product Result Type Manual Result Reading Yes No QR Result Reading Yes No Bluetooth Result Reading Yes No Device Pairing Details Available for Device Pairing Clear Add {% endblock %}
Current Image